/* Thank You Page Styles */

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.thanks-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 54, 224, 0.03);
    z-index: -1;
}

.thanks-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(58, 54, 224, 0.3);
}

.check-mark {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    line-height: 0;
}

.thanks-wrapper h1 {
    margin-bottom: 1.5rem;
}

.thanks-wrapper h1 span {
    color: var(--primary-color);
}

.thanks-wrapper p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Media queries for responsiveness */
@media screen and (max-width: 992px) {

    .thanks-section .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .thanks-wrapper {
        padding: 10px;
        margin: 0px;
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .thanks-wrapper {
        padding: 10px;
    }
    
    .thanks-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .check-mark {
        font-size: 2.5rem;
    }
    
    .thanks-cta {
        flex-direction: column;
    }
    
    .thanks-cta .btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .thanks-wrapper {
        padding: 10px;
    }
    
    .thanks-icon {
        width: 70px;
        height: 70px;
    }
    
    .check-mark {
        font-size: 2rem;
    }
} 