/* ===== Shared Auth Styles (Login, Register, Verify) ===== */
.auth-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 36px;
    background: #16161f;
    border-radius: 14px;
    border: 1px solid #2a2a3a;
    text-align: center;
    box-sizing: border-box;
}
@media (max-width: 480px) {
    .auth-container {
        padding: 24px 18px;
        border-radius: 0;
        border: none;
    }
}
.auth-container, .auth-container * {
    color: #ccc;
}
.auth-container h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}
.auth-container p.subtitle {
    color: #888;
    font-size: 13px;
    margin-bottom: 24px;
}
.auth-container .form-group {
    margin-bottom: 16px;
    text-align: left;
}
.auth-container label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    margin-bottom: 5px;
}
.auth-container .auth-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid #2a2a3a;
    border-radius: 8px;
    outline: none;
    color: #fff;
    background: #0a0a0f;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.auth-container .auth-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102,126,234,0.15);
}
.auth-container .auth-input::placeholder {
    color: #555;
}
.auth-btn {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, box-shadow 0.2s;
}
.auth-btn:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(102,126,234,0.3);
}
.auth-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.auth-container .failResult {
    font-size: 11px;
    color: #f87171 !important;
    margin-top: 4px;
    display: block;
}
.auth-container .auth-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: #667eea !important;
    text-decoration: none;
}
.auth-container .auth-link:hover {
    text-decoration: underline;
}
.auth-container .auth-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}
.auth-container .auth-footer a {
    color: #667eea !important;
    text-decoration: none;
}
.auth-container .auth-footer a:hover {
    text-decoration: underline;
}

/* Verify page specific */
.code-input {
    background: #0a0a0f !important;
    border: 1px solid #2a2a3a !important;
    color: #fff !important;
    border-radius: 8px !important;
}
.code-input:focus {
    border-color: #667eea !important;
}
#verifyResult {
    font-size: 12px;
    margin-top: 10px;
}
#verifyResult.success {
    color: #4ade80 !important;
}
.resend-link {
    color: #667eea !important;
}
.resend-link:hover {
    color: #8b9ff5 !important;
}
.resend-link.disabled {
    color: #555 !important;
}
