/* public/css/auth.css */

/* Auth Page specific layout wrapper */
.auth_wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page {
    width: 100%;
    max-width: 90%;
    min-height: 700px;
    display: flex;
    background: #060b14;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.left_panel {
    width: 44%; padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 1;
}

.right_panel {
    flex: 1; padding: 40px 40px 36px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1;
}

/* Auth Branding & Text */
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.brand_icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(124, 58, 237, 0.25)); border: 1px solid rgba(0, 240, 255, 0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #00f0ff; }
.brand_name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #e2e8f0; letter-spacing: 0.5px; }
.brand_tag { font-size: 10px; color: rgba(0, 240, 255, 0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 1px; }

.hero_text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 24px 0; }
.hero_title { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 600; line-height: 1.2; color: #f1f5f9; margin-bottom: 16px; }
.hero_title span { background: linear-gradient(135deg, #00f0ff, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero_sub { font-size: 14px; color: rgba(148, 163, 184, 0.75); line-height: 1.6; max-width: 260px; margin-bottom: 32px; }

/* Auth Specific Elements */
.trust_items { display: flex; flex-direction: column; gap: 14px; }
.trust_item { display: flex; align-items: center; gap: 12px; }
.trust_icon { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ti_bg_cyan { background: rgba(0, 240, 255, 0.1); color: #00f0ff; border: 1px solid rgba(0, 240, 255, 0.2); }
.ti_bg_purple { background: rgba(124, 58, 237, 0.15); color: #a78bfa; border: 1px solid rgba(124, 58, 237, 0.25); }
.ti_bg_green { background: rgba(16, 185, 129, 0.1); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }
.trust_label { font-size: 12px; color: rgba(148, 163, 184, 0.8); letter-spacing: 0.3px; }
.trust_label strong { color: #e2e8f0; font-weight: 500; display: block; font-size: 13px; margin-bottom: 1px; }

.bottom_stats { display: flex; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.stat { text-align: center; }
.stat_num { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #00f0ff; }
.stat_label { font-size: 10px; color: rgba(148, 163, 184, 0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

.divider_v { width: 1px; background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.15) 30%, rgba(0, 240, 255, 0.15) 70%, transparent); position: relative; z-index: 1; flex-shrink: 0; }
.divider_h { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.divider_h::before, .divider_h::after { content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.07); }
.divider_h span { font-size: 11px; color: rgba(148, 163, 184, 0.4); letter-spacing: 1px; white-space: nowrap; }

.form_header { margin-bottom: 28px; }
.form_step { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 240, 255, 0.07); border: 1px solid rgba(0, 240, 255, 0.15); border-radius: 20px; padding: 5px 14px; margin-bottom: 16px; }
.step_dot { width: 6px; height: 6px; border-radius: 50%; background: #00f0ff; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.step_text { font-size: 11px; color: rgba(0, 240, 255, 0.7); letter-spacing: 1.5px; text-transform: uppercase; }
.form_title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; color: #f1f5f9; margin-bottom: 6px; }
.form_desc { font-size: 13px; color: rgba(148, 163, 184, 0.65); }

.field_row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; position: relative; }

.oauth_row { display: flex; gap: 10px; }
.oauth_btn { flex: 1; padding: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 10px; color: rgba(148, 163, 184, 0.8); font-family: 'Inter', sans-serif; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
.oauth_btn:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.15); color: #e2e8f0; }
.oauth_icon { width: 16px; height: 16px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

.footer_links { text-align: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 12px; color: rgba(148, 163, 184, 0.5); }
.footer_links a { color: rgba(0, 240, 255, 0.7); text-decoration: none; transition: color 0.2s; }
.footer_links a:hover { color: #00f0ff; }

.security_row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.sec_badge { display: flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(148, 163, 184, 0.35); padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); background: rgba(255, 255, 255, 0.02); }

/* Auth Responsive Stacking */
@media (max-width: 992px) {
    .page { flex-direction: column; min-height: auto; max-width: 550px; }
    .left_panel { width: 100%; padding: 40px 30px 20px 30px; }
    .hero_title { font-size: 28px; }
    .hero_sub { max-width: 100%; margin-bottom: 0; }
    .trust_items { display: none; }
    .bottom_stats { display: none; }
    .divider_v { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(0, 240, 255, 0.15) 30%, rgba(0, 240, 255, 0.15) 70%, transparent); }
    .right_panel { width: 100%; padding: 30px; }
}

@media (max-width: 500px) {
    .field_row { grid-template-columns: 1fr; }
    .oauth_row { flex-direction: column; }
    .page { border-radius: 0; box-shadow: none; max-width: 100%; }
    .auth_wrapper { padding: 0; }
}