.auth-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(240, 248, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(180, 200, 230, 0.35);
    box-shadow: 0 12px 32px rgba(0, 60, 120, 0.09);
    border-radius: 20px;
    padding: 34px 40px;
    animation: fadeDrop 0.35s ease-out;
}

/* Button style sesuai theme register/login */
.btn-auth {
    width: 100%;
    border: none;
    background: #0d6efd;
    color: white;
    padding: 12px;
    font-weight: 500;
    border-radius: 12px;
    transition: 0.25s ease;
}

.btn-auth:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.auth-sub {
    font-size: 0.9rem;
    color: #4b5c75;
    margin-bottom: 15px;
}

.auth-extra a {
    color: #0d6efd;
    text-decoration: none;
    font-size: .9rem;
}

.auth-extra a:hover {
    text-decoration: underline;
}

/* Animasi */
@keyframes fadeDrop {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Eye icon password wrapper */
.pass-wrapper {
    position: relative;
}
.pass-wrapper .toggle-eye {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.65;
    transition: 0.2s;
}
.pass-wrapper .toggle-eye:hover {
    opacity: 1;
}