/* Quick Solos Signup3 Page Styles - Professional Design with Purple Theme */

body {
    font-family: 'Poppins', sans-serif;
    background-image: 
        linear-gradient(rgba(75, 0, 130, 0.75), rgba(50, 0, 90, 0.75)),
        url('https://s3.us-east-1.amazonaws.com/wbm.websbest/QSOSiteBackground3_Compressed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Card - Creates separation from background */
.content-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(186, 85, 211, 0.3);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.list-icon {
    margin-bottom: 30px;
}

.list-icon i {
    font-size: 5rem;
    color: #da70d6;
    animation: listGlow 2.5s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(218, 112, 214, 0.6));
}

@keyframes listGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.15) rotate(-5deg);
        opacity: 0.85;
    }
}

.main-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(186, 85, 211, 0.6), transparent);
    margin: 40px 0;
}

/* Intro Content */
.intro-content {
    text-align: center;
    margin: 40px 0;
}

.intro-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.8;
}

.highlight-text {
    font-weight: 600;
    color: #da70d6;
    font-size: 1.2rem;
    background: rgba(186, 85, 211, 0.2);
    padding: 20px 25px;
    border-radius: 8px;
    border: 2px solid rgba(186, 85, 211, 0.4);
}

/* Signup Section */
.signup-section {
    margin: 50px 0 30px;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(186, 85, 211, 0.3);
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #da70d6;
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-label i {
    color: #da70d6;
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid rgba(186, 85, 211, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: #da70d6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(186, 85, 211, 0.5);
}

/* CTA Button */
.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 30px;
    margin-top: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #9370db 0%, #ba55d3 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ba55d3 0%, #da70d6 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(186, 85, 211, 0.6);
    color: #ffffff;
}

.btn-cta i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Urgency Text */
.urgency-text {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #da70d6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .content-card {
        padding: 50px 30px;
        border-radius: 15px;
    }
    
    .list-icon i {
        font-size: 4rem;
    }
    
    .main-headline {
        font-size: 2.2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 15px 18px;
    }
    
    .signup-section {
        padding: 35px 25px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 16px 25px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }
    
    .content-card {
        padding: 40px 25px;
    }
    
    .list-icon i {
        font-size: 3.5rem;
    }
    
    .main-headline {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .highlight-text {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .signup-section {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 14px 20px;
    }
    
    .btn-cta i {
        font-size: 1.3rem;
    }
}