/* Top Ranked Traffic Signup3 Page Styles - Modern Design with Woman Pointing */

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('https://s3.amazonaws.com/wbm.websbest/TRTSiteBackground3_Compressed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container-fluid {
    padding: 20px;
}

/* Content Box - Modern card design positioned where woman points */
.content-box {
    max-width: 600px;
    margin-left: 80px;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Badge */
.badge-container {
    display: inline-block;
}

.badge-free {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    display: inline-block;
    text-transform: uppercase;
}

/* Main Headline */
.main-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

/* Sub Text */
.sub-text {
    font-size: 1.3rem;
    color: #ff4757;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Form Container */
.form-container {
    margin-top: 40px;
    background: rgba(248, 249, 250, 0.6);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.form-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.signup-form {
    margin: 0;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    display: block;
}

.form-label i {
    color: #007bff;
    margin-right: 5px;
}

.form-control {
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    background: #ffffff;
}

/* CTA Button */
.btn-cta {
    padding: 16px 30px;
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff6b81 0%, #ff7979 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 71, 87, 0.5);
    color: #ffffff;
}

.btn-cta i {
    font-size: 1.5rem;
}

/* Guarantee Text */
.guarantee-text {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-text i {
    font-size: 1.3rem;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .content-box {
        margin-left: 40px;
    }
}

@media (max-width: 992px) {
    .content-box {
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
    }
    
    .main-headline {
        font-size: 2.3rem;
    }
    
    .sub-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .content-box {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .sub-text {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 14px 25px;
    }
}

@media (max-width: 576px) {
    body {
        background-position: 30% center;
    }
    
    .content-box {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .main-headline {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }
    
    .sub-text {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 13px 20px;
    }
    
    .btn-cta i {
        font-size: 1.3rem;
    }
    
    .guarantee-text {
        font-size: 0.9rem;
    }
}