section.section-content {
    max-width: unset;
    margin: unset;
}

.content-container {
    max-width: 1170px;
    margin: auto;
}
.section-content.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }

section.pink {
    background: #F4EDF9;
}

section.grey {
    background: #E8E8ED;
}

.thank-you-group-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.thank-you-text-group h2 {
    font-family: "Satoshi", sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    color: #1D144D;
    margin-bottom: 22px;
}

.thank-you-text {
    font-family: "Satoshi", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #1D144D;
}

.thank-you-text-group {
    width: 523px;
    max-width: 100%;
  }

.thank-you-image img {
    max-width: 132px;
    height: auto;
}

.thank-you-form-group {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 426px;
    width: 100%;
}

.form-text h3 {
    font-family: "Satoshi", sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    color: #924ac7;
}

.form-text p {
    font-family: "Satoshi", sans-serif;
    
    font-weight: 400;
    line-height: 22px;
    color: #1D144D;
}

.form-text p strong {
    font-family: "Satoshi", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    color: #1D144D;
    margin-bottom: 5px;
}

[type="button"], [type="submit"], button {
    background: linear-gradient(207.12deg, #fe906d 0%, #934ac5 100%);;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    width: 171px;
}

[type="button"]:hover, [type="submit"]:hover, button:hover {
    background: linear-gradient(207.12deg, #934ac5 0%, #fe906d 100%);
    color: white;
}

input[type='email'] {
    border: solid 1px #9793ad;
    border-radius: 5px;
    background: white;
}

@media screen and (max-width: 950px) {
    .thank-you-image img {
        display: none;
    }

    .thank-you-group-wrapper {
        grid-template-columns: 0 repeat(2, 1fr);
    }

    .thank-you-text-group h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (max-width: 680px) {
    .thank-you-group-wrapper {
        grid-template-columns: 1fr;
    }
}

