/* === AUTH LAYOUT === */
.auth-page-wrapper {
    min-height: 95vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    /* background: linear-gradient(135deg, #5b61ff 0%, #8a5dff 40%, #f5f7ff 100%); */
}

.auth-login-card {
    width: 100%;
    max-width: 980px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    display: flex;
    overflow: hidden;
}

/* KOLUM ILUSTRASI KIRI */
.auth-login-left {
    flex: 1;
    background: radial-gradient(circle at top left, #8ad3ff 0%, #5f8dff 40%, #6248ff 100%);
    padding: 2.75rem 2.25rem;
    color: #e5f3ff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-login-left-inner {
    text-align: center;
}

.auth-login-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.auth-login-left-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.auth-login-left-text {
    font-size: 0.85rem;
    opacity: .9;
}

/* KOLUM FORM KANAN */
.auth-login-right {
    flex: 1;
    padding: 2.75rem 3rem;
}

.auth-login-header small {
    font-size: .8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.auth-login-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: .35rem 0 .25rem;
    color: #111827;
}

.auth-login-header p {
    margin: 0 0 1.75rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.auth-login-alert {
    font-size: 0.85rem;
    border-radius: 999px;
    padding: .4rem .9rem;
}

.auth-login-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
}

.auth-login-form .form-control {
    border-radius: 999px;
    border-color: #e5e7eb;
    font-size: 0.9rem;
    padding: 0.55rem 0.95rem;
}

.auth-login-form .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.auth-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.auth-remember-row a {
    color: #6366f1;
    text-decoration: none;
}

.auth-remember-row a:hover {
    text-decoration: underline;
}

.btn-auth-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-weight: 600;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
    cursor: pointer;

    /* smooth effect */
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        color 0.2s ease;
}

.btn-auth-primary:hover {
    /* sedikit dipertegas warnanya */
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 35px rgba(79, 70, 229, 0.45);
}

.btn-auth-primary:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(79, 70, 229, 0.35);
}

.btn-auth-primary:focus-visible {
    outline: 2px solid #c4b5fd;
    outline-offset: 2px;
}

.auth-login-footer {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

.auth-login-footer strong {
    font-weight: 600;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .auth-login-card {
        max-width: 720px;
    }

    .auth-login-right {
        padding: 2.25rem 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .auth-login-card {
        max-width: 420px;
    }

    .auth-login-left {
        display: none;
    }

    .auth-login-right {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .auth-page-wrapper {
        padding: 1.5rem .75rem;
    }

    .auth-login-card {
        border-radius: 20px;
    }

    .auth-login-header h2 {
        font-size: 1.4rem;
    }
}