/* ═══════════════════════════════════════════════════════════════════════════
   AcheiGP.com — Auth Page Styles (TGNHOST)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── AUTH CARD ──────────────────────────────────────────────────────────── */
.auth-card {
    max-width: 450px;
    margin: 20px auto;
    background: #1f222f;
    border-radius: 10px;
    padding: 35px 30px;
    border: 1px solid #32364c;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.auth-card h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    font-size: 22px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: #a0a5b5;
    font-size: 13px;
    margin-bottom: 25px;
}

/* ── ERROR MESSAGE ──────────────────────────────────────────────────────── */
.auth-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
    animation: shake 0.4s ease;
}

.auth-error.show {
    display: block;
}

.auth-success {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid #25d366;
    color: #25d366;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
}

.auth-success.show {
    display: block;
}

/* ── FORM SECTIONS ──────────────────────────────────────────────────────── */
.auth-section {
    display: none;
}

.auth-section.active {
    display: block;
}

/* ── PASSWORD STRENGTH ──────────────────────────────────────────────────── */
.password-strength {
    height: 4px;
    background: #32364c;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

/* ── AUTH FOOTER LINKS ──────────────────────────────────────────────────── */
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #a0a5b5;
}

.auth-footer a {
    color: #ff3366;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

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

.auth-footer .divider-text {
    margin: 0 8px;
    color: #626880;
}

/* ── OTP / WHATSAPP TOGGLE ──────────────────────────────────────────────── */
.otp-toggle-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.otp-toggle-row button {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #32364c;
    background: #171923;
    color: #a0a5b5;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.otp-toggle-row button.active {
    background: #ff3366;
    color: #fff;
    border-color: #ff3366;
}

/* ── COOLDOWN BUTTON ────────────────────────────────────────────────────── */
.btn-cooldown {
    opacity: 0.6;
    pointer-events: none;
}

/* ── LEI FELCA SECTION ──────────────────────────────────────────────────── */
.felca-section {
    background: #171923;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #ffcc00;
}

.felca-section h3 {
    font-size: 14px;
    color: #ffcc00;
    margin-bottom: 12px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .auth-card {
        margin: 10px auto;
        padding: 25px 20px;
    }
}
