/* ============================================
   TTRIPLE FITNESS - AUTH PAGES STYLES
   ============================================ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--bg-main);
}

.auth-brand-panel {
    width: 45%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.auth-brand-panel::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}
.auth-brand-panel::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    border-radius: 50%;
}
.auth-brand-panel h1 {
    color: var(--primary-color);
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.auth-brand-panel p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    text-align: center;
    max-width: 380px;
    position: relative;
    z-index: 1;
}
.auth-brand-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.auth-brand-features li {
    color: rgba(255,255,255,0.6);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.auth-brand-features li i { color: var(--primary-color); margin-right: 0.5rem; }

.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-form-card {
    width: 100%;
    max-width: 440px;
}
.auth-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}
.auth-form-card p.subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
}
.auth-form-card .form-control {
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
}
.auth-form-card .btn-primary {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    width: 100%;
}

/* Credentials Page */
.credentials-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
}
.credentials-card .warning-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1.5px solid #93c5fd;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
}
.credential-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
}
.credential-row .label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.credential-row .value { font-weight: 600; color: var(--text-primary); font-size: 0.9375rem; word-break: break-all; }
.credential-row .copy-btn { background: none; border: none; color: var(--primary-color); cursor: pointer; font-size: 1rem; padding: 0.25rem; }
.credential-row .copy-btn:hover { color: var(--primary-hover); }

/* OTP Input */
.otp-inputs { display: flex; gap: 0.5rem; justify-content: center; margin: 1.5rem 0; }
.otp-inputs input {
    width: 50px; height: 55px; text-align: center;
    font-size: 1.5rem; font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.otp-inputs input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1); outline: none; }

.resend-timer { text-align: center; color: var(--text-secondary); font-size: 0.875rem; margin-top: 1rem; }
.resend-timer .timer { font-weight: 700; color: var(--primary-color); }
.resend-timer a { font-weight: 600; }

/* Responsive */
@media (max-width: 991px) {
    .auth-brand-panel { display: none; }
    .auth-form-panel { padding: 1.5rem; }
}
@media (max-width: 576px) {
    .auth-form-card { max-width: 100%; }
    .otp-inputs input { width: 42px; height: 48px; font-size: 1.25rem; }
}

/* Google Login */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.625rem 1.5rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    color: #3c4043;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-google:hover {
    background: #f8f8f8;
    border-color: #c1c1c1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    color: #3c4043;
}
