/* ==========================================================================
   REGISTER PAGE SPECIFIC STYLES (Fully Responsive)
   ========================================================================== */

.register-page-wrapper {
    background-color: var(--color-bg-light);
    font-family: var(--font-main);
    color: var(--color-primary-blue);
}

/* --- HERO SECTION --- */
.reg-hero-section {
    background-color: #0b1c32; /* Deep SportyTrader navy blue */
    color: #ffffff;
    padding: 60px 20px 80px 20px;
}

.reg-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centers them equally side-by-side */
    gap: 40px;
}

.reg-hero-content {
    flex: 1; /* Takes up exact equal layout sharing */
    min-width: 0;
    padding-top: 0;
}

.reg-hero-content h1 {
    font-size: 42px; /* Matches the bold prominent look */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #f89e00;
}

.reg-hero-content p {
    font-size: 16px;
    color: #b0c0d0;
    line-height: 1.6;
    max-width: 100%; /* Allows it to fill the equal column naturally */
}

/* --- REGISTRATION CARD FORM --- */
.reg-card-box {
    background-color: #ffffff;
    color: #162a43;
    flex: 1; /* Makes the form container match the text column width equally */
    max-width: 500px; /* Caps it so it doesn't get too wide on giant screens */
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.reg-card-box h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.social-auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #dcdfe6;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.15s;
}

.social-auth-btn:hover {
    background: #f8f9fa;
}

.reg-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.reg-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e6ea;
}

.reg-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 12px;
    font-size: 11px;
    color: #8c96a3;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #007a56;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    color: #4a5568;
    margin: 20px 0;
}

.form-checkboxes label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.form-checkboxes input {
    margin-top: 2px;
}

.form-checkboxes a {
    color: #0066cc;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background-color: #f89e00;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #e08e00;
}

.reg-disclaimer-small {
    text-align: center;
    font-size: 11px;
    color: #8c96a3;
    margin-top: 16px;
}

/* --- WHY SIGN UP SECTION --- */
.why-sign-section {
    padding: 60px 20px;
    background-color: #f5f6f9;
}

.why-sign-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.feature-card.active-border {
    border: 2px solid #f89e00;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #eef2f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #162a43;
    margin-bottom: 20px;
}

.feature-icon.yellow-box {
    background: #fff8e8;
}

.feature-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 14px;
    color: #b0c0d0;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

/* --- PRIZE DRAW SECTION --- */
.prize-draw-section {
    background-color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #e2e6ea;
}

.prize-draw-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.prize-info {
    flex: 1;
}

.prize-tag {
    font-size: 11px;
    font-weight: 800;
    color: #f89e00;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.prize-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.prize-info p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.countdown-boxes {
    display: flex;
    gap: 16px;
}

.countdown-item {
    background: #f5f6f9;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    min-width: 70px;
}

.countdown-item .num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #162a43;
}

.countdown-item .label {
    font-size: 10px;
    font-weight: 700;
    color: #8c96a3;
}

/* Amazon Gift Card Graphic */
.prize-card-graphic {
    flex-shrink: 0;
}

.amazon-card {
    width: 380px;
    min-height: 220px;
    background: linear-gradient(135deg, #0b1c32 0%, #16325c 100%);
    border-radius: 12px;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amazon-logo {
    font-weight: 900;
    font-style: italic;
    font-size: 16px;
    letter-spacing: -0.5px;
}

.card-dots {
    letter-spacing: 2px;
    font-size: 14px;
    color: #a0aec0;
}

.card-middle h4 {
    font-size: 32px;
    font-weight: 900;
    color: #f89e00;
    line-height: 1;
}

.card-middle p {
    font-size: 13px;
    color: #cbd5e0;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #a0aec0;
    line-height: 1.3;
}

.card-bottom strong {
    color: #ffffff;
    font-size: 11px;
}

.prize-footer-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #8c96a3;
    margin-top: 50px;
}

.prize-footer-disclaimer a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
}

/* --- RESPONSIVE DESIGN (Mobile & Tablets) --- */
@media (max-width: 992px) {
    .reg-hero-container, 
    .prize-draw-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reg-hero-content p,
    .prize-info p {
        margin: 0 auto 30px auto;
    }

    .reg-card-box {
        width: 100%;
        max-width: 440px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .countdown-boxes {
        justify-content: center;
    }

    .amazon-card {
        width: 100%;
        max-width: 360px;
    }
}