#homeBigButtons {
    display: flex;
    flex-wrap: wrap;
}

#homeBigButtons .item {
    flex: 1;
    padding: 5px 5px;
    min-width: 300px;
}

#homeBigButtons .item .btn {
    font-size: 1.6em;
    height: 120px;
    color: #fff;
    transition: all 300ms;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    white-space: normal;
}

@media (max-width: 700px) {
    #homeBigButtons .item {
        min-width: 100%;
        font-size: 13px;
    }

    #homeBigButtons .item .btn i {
        margin-bottom: 10px;
        font-size: 22px;
    }
}

.swal2-popup {
    font-size: 1.6rem !important;
}
.section-header {
    margin-bottom: 25px;
    width: 100%;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 3px solid #6a1b9a;
    margin: 0;
}

.login-links-section {
    margin-top: 20px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.login-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.login-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.login-link-card i {
    font-size: 24px;
    color: var(--card-color);
    background-color: var(--card-color-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.login-link-card span {
    font-weight: 600;
    color: #333;
    font-size: 19px;
    margin-bottom: 6px;
}

.login-link-card small {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.login-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.login-link-card:hover i {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--card-color-light);
}
