:root {
    --accent: #00f7ff;
    --pink: #ff007f;
    --bg-card: #1a1a1a;
}

/* Memastikan Card langsung muncul tanpa hover */
.card-stage {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 100;
}

/* Tipografi Seimbang */
.brand-title {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.page-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.instruction {
    color: #aaa; 
    font-size: 13px; 
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
}

/* Footer khusus Lupa Password */
.footer-forgot {
    margin-top: 30px;
    text-align: center;
}

.footer-forgot a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

.footer-forgot a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent);
}

/* Penyesuaian ukuran card */
.card {
    height: auto !important;
    min-height: 420px;
}