/* Signup Page Styles */

/* Stars Background */
.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 90px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 80px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: -1;
}

.title-brand {
    font-size: 5rem;
}

.relative-top {
    top: var(--top, 100px);
    position: relative;
}

.top-l {
    top: 280px;
    position: relative;
}

.top-s {
    top: 130px;
    position: relative;
}

.signup-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--light-bg-color);
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
}

.signup-form .form-control::placeholder {
    color: var(--text-dark);
}

.signup-form .form-control:focus {
    background-color: var(--light-bg-color);
}

.signup-form .form-check-input:checked {
    background-color: var(--color-soft);
    border-color: var(--color-soft);
}

.btn-submit:hover {
    /* background-color: var(--dark-purple); */
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(108, 52, 144, 0.4); */
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.step h4 {
    color: var(--light-purple);
    margin-bottom: 15px;
}

.highlight-text {
    background-color: rgba(155, 89, 182, 0.2);
    padding: 20px;
    border-radius: 5px;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--light-purple);
    padding-left: 20px;
    margin: 20px 0;
    opacity: 0.9;
}

/* Testimonials */
.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.testimonial blockquote {
    border: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.testimonial cite {
    display: block;
    text-align: right;
    color: var(--light-purple);
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.benefits p {
    background-color: rgba(155, 89, 182, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: rgba(155, 89, 182, 0.1);
    border-radius: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: var(--light-purple);
    margin-bottom: 10px;
}

/* Bottom Banner */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-pink);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    z-index: 100;
}

/* Modal Styles */
.modal-content {
    /* background-color: var(--bg-dark); */
    /* color: var(--text-light); */
    border: 1px solid rgba(22, 22, 22, 0.8);
}

.modal-header {
    border-bottom: 1px solid rgba(83, 83, 83, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-close {
    /* filter: invert(1); */
}

.accordion .accordion-item {
    margin-bottom: 1rem;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: invert(1);
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .mystical-graphics {
        display: none;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits {
        flex-direction: column;
    }
} */
