/* Auth Pages Base */
.auth-page-main { background: #f0f4f8; }
.auth-page-section { padding: 100px 0; }
.auth-outer-wrapper {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    display: flex;
    border: 1px solid #f0f0f0;
}
.auth-wrapper-min-700 { min-height: 700px; }
.auth-wrapper-min-800 { min-height: 800px; }

/* Auth Side Info */
.auth-side-gradient {
    flex: 1;
    background: linear-gradient(135deg, var(--tj-theme-primary) 0%, #2563eb 100%);
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.auth-side-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}
.auth-side-content { position: relative; z-index: 2; }
.auth-side-title { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 25px; line-height: 1.1; }
.auth-side-desc { font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.8; margin-bottom: 40px; }
.auth-feature-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px;
}
.auth-feature-icon i { font-size: 12px; }
.auth-feature-text { font-weight: 600; }

.auth-side-light {
    flex: 0.8;
    background: #f8fafc;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #f0f0f0;
}
.auth-side-light img { max-width: 100%; height: auto; margin-bottom: 40px; }
.auth-side-light h4 { font-weight: 800; color: #111; }
.auth-side-light p { color: #666; font-size: 15px; }

/* Auth Form Side */
.auth-form-side { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.auth-form-side-wider { flex: 1.2; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.auth-form-title { font-weight: 800; color: #111; font-size: 32px; margin-bottom: 10px; }
.auth-form-desc { color: #666; }

/* Alerts */
.auth-alert-danger { border-radius: 15px; background: #fef2f2; color: #991b1b; }

/* Buttons & Inputs */
.auth-social-btn {
    height: 55px; border-radius: 15px;
    font-weight: 700; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    width: 100%;
}
.auth-social-google { border: 2px solid #f0f0f0; color: #444; background: #fff; }
.auth-social-google:hover { border-color: #ddd; color: #444; }
.auth-social-google img { width: 20px; margin-right: 12px; }
.auth-social-apple { background: #111; color: #fff; border: none; }
.auth-social-apple:hover { background: #000; color: #fff; }
.auth-social-apple i { margin-right: 12px; }

.auth-divider-line { flex: 1; height: 1px; background: #f0f0f0; }
.auth-divider-text { padding: 0 20px; color: #999; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.auth-input-label { font-weight: 700; color: #334155; font-size: 14px; }
.auth-input-wrapper { position: relative; }
.auth-input-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
.auth-input-field {
    height: 60px; border-radius: 15px; border: 2px solid #f1f5f9;
    padding-left: 55px; font-weight: 500;
}
.auth-input-field-noplace {
    height: 60px; border-radius: 15px; border: 2px solid #f1f5f9;
    font-weight: 500;
    padding-left: 15px;
}

.auth-remember-label { font-size: 14px; font-weight: 600; color: #64748b; }
.auth-forgot-link { color: var(--tj-theme-primary); font-size: 14px; font-weight: 700; text-decoration: none; }
.auth-submit-btn { height: 60px; border-radius: 15px; font-size: 16px; display: flex; width: 100%; justify-content: center; }

.auth-footer-text { color: #64748b; font-weight: 600; }
.auth-footer-link { color: var(--tj-theme-primary); font-weight: 800; text-decoration: none; }

.auth-terms-label { font-size: 13px; color: #64748b; }
.auth-terms-link { color: var(--tj-theme-primary); font-weight: 700; text-decoration: none; }

/* Profile/Account Shared */
.account-email-disabled { background: #f8fafc; }
.account-email-note { font-size: 12px; color: #94a3b8; margin-top: 5px; }
.account-submit-btn { height: 50px; color: #fff; padding: 0 30px; border-radius: 12px; font-weight: 600; border: none; justify-content: center; display: inline-flex; align-items: center; }
.account-divider { border-top: 1px solid #e2e8f0; margin: 40px 0; }
.account-section-title { font-weight: 700; color: #111; margin-bottom: 25px; }
.account-password-input { padding-right: 45px; }
.account-secondary-btn { height: 50px; background: #334155; color: #fff; padding: 0 30px; border-radius: 12px; font-weight: 600; border: none; display: inline-flex; align-items: center; justify-content: center;}

/* Billing specific */
.billing-type-select { font-weight: 600; cursor: pointer; }
.billing-textarea { border-radius: 10px; border: 1px solid #e2e8f0; min-height: 100px; padding: 15px; }
.billing-submit-btn { height: 55px; width: 220px; justify-content: center; border: none; display: inline-flex; align-items: center; }
