/* ==========================================================================
   2GEDR - HOME / AUTH PAGE STYLES
   ========================================================================== */

/* 1. Global Page Reset */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* True pure black background */
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Main Hero & Headline Container */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffffff, #ff7f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. Main Form Container Card */
.signup-container {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   CLEAN FIXED AUTH TABS LAYOUT SYSTEM
   ========================================================================== */

.auth-tabs {
    display: flex;
    justify-content: space-around;
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 0;
}

/* This pseudo-element creates a clean, singular baseline stretching across the container */
.auth-tabs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Forced razor-thin base line */
    background-color: #161616;
    z-index: 1;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #555555;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    z-index: 2; /* Sits cleanly on top of the container line */
    
    /* Disables all native borders to prevent browser-specific stacking bugs */
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid transparent !important; 
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: #ffffff;
}

/* Premium active selector line overlay */
.tab-btn.active {
    color: #ffffff;
    /* This overrides the baseline background cleanly without duplicating */
    border-bottom: 2px solid darkorange !important; 
}

/* 5. Inline Input Styling (Minimalist Lines) */
.auth-form {
    width: 100%;
}

.form-heading {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.input-group {
    width: 100%;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #222222;
    padding: 12px 4px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    border-bottom-color: darkorange;
}

.input-group input::placeholder {
    color: #555555;
}

/* 6. Forgot Password (Sign In Utility) */
.forgot-password-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
    margin-bottom: 25px;
}

.forgot-link {
    color: #666666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: darkorange;
}

/* 7. Action Submit Buttons (Pill Design) */
.submit-btn {
    width: 100%;
    background-color: #1a1a1a;
    color: #555555;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.submit-btn:hover {
    background-color: darkorange;
    color: #ffffff;
}

.active-btn {
    background-color: darkorange !important;
    color: #ffffff !important;
}

/* 8. Disclaimers & Section Dividers */
.safety-notice {
    background-color: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bell-icon {
    font-size: 16px;
    color: darkorange;
}

.notice-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #b36b00;
}

.divider-text {
    text-align: center;
    color: #444444;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 30px 0 20px 0;
}

/* 9. Social Login Elements (Google / Facebook Buttons) */
.social-login-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pill-btn {
    width: 100%;
    background-color: #161616;
    color: #ffffff;
    border: 1px solid #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.pill-btn:hover {
    background-color: #222222;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Inline Form Error Alert Banner */
.inline-error-banner {
    background-color: rgba(255, 74, 74, 0.05);
    border: 1px solid rgba(255, 74, 74, 0.2);
    color: #ff4a4a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
    box-sizing: border-box;
}

/* The main navigation bar container */
.auth-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #161616; /* Made this slightly thicker dark background line */
    margin-bottom: 24px;
    width: 100%;
}

/* Individual tab buttons */
.tab-btn {
    background: transparent;
    border: none;
    color: #555555;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    
    /* REMOVE the old border-bottom from here entirely */
    border-bottom: none; 
    
    /* Move the active indicator down by 2px to mask the background line perfectly */
    margin-bottom: -2px; 
}

.tab-btn:hover {
    color: #ffffff;
}

/* Premium active selector line overlay */
.tab-btn.active {
    color: #ffffff;
    /* This overrides the bottom border cleanly only when the tab is clicked active */
    border-bottom: 2px solid darkorange; 
}