.auth-card {
    max-width: 920px;
    width: 100%;
    padding: 2rem 2.5rem;
    margin: 2px auto 2px auto;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .auth-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .auth-card .row .col-md-6,
    .auth-card .row .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* SweetAlert2 custom popup */
.rounded-alert {
    border-radius: 16px !important;
    padding: 1.6rem;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Title custom style */
.swal2-title-custom {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Confirm button style */
.swal2-confirm-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

