.trial-section {
    width: 1300px;
    max-width: 100%;
    margin-top: 40px;
    box-sizing: border-box;
    border-radius: 30px;
    border: 1px solid #EBEFFF;
    opacity: 1;
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, #6E34E2 0%, #9A67D5 109.72%, rgba(255, 255, 255, 0) 109.73%);
    margin-bottom: 80px;
}

.trial-section>img[alt="girl"] {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    height: 310px;
    object-fit: contain;
}

.trial-section>img[alt="boy"] {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    height: 310px;
    object-fit: contain;
}

.trial-section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin: 0;
    z-index: 1;
    max-width: 580px;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.trial-section__description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
    color: #fff;
    z-index: 1;
    max-width: 520px;
    margin-bottom: 20px;
}

.trial-section__form {
    width: 362px;
}

.trial-section__inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.trial-section__input {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #EBEFFF;
    padding: 0 30px;
    background: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    color: #000;
    /* outline: none; */
    z-index: 1;
}


.trial-section .tel-validation  {
    margin-bottom: 10px;
}

.trial-section__input::placeholder {
    color: #B1B1B1;
    opacity: 1;
}

.trial-section__button {
    width: 362px;
    max-width: 100%;
    height: 60px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 0;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    gap: 10px;
    background-image: var(--gradient-2);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s ease;
    margin-top: 20px;
}

.trial-section__button::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background-image: var(--gradient-green-2);
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.trial-section__button:hover::before {
    opacity: 1;
}

@media screen and (max-width: 1199px) {
    .trial-section>img[alt="girl"] {
        left: auto;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 174px;
        height: 174px;
        object-fit: contain;
    }

    .trial-section>img[alt="boy"] {
        right: auto;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 174px;
        height: 174px;
        object-fit: contain;
    }
}

@media screen and (max-width: 991px) {
    .trial-section>img[alt="girl"] {
        display: none;
    }

    .trial-section>img[alt="boy"] {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .trial-section__title {
        font-size: 26px;
    }

    .trial-section__input {
        font-size: 18px;
        padding: 0 20px;
    }

    .trial-section__button {
        height: 58px;
    }
}

@media screen and (max-width: 525px) {
    .trial-section {
        width: 100%;
        padding-top: 50px;
        padding-right: 30px;
        padding-bottom: 50px;
        padding-left: 30px;
        border-radius: 30px;
    }

    .trial-section>img[alt="girl"],
    .trial-section>img[alt="boy"] {
        display: none;
    }

    .trial-section__form {
        width: 295px;
    }

    .trial-section__inputs {
        gap: 10px;
    }

    .trial-section__input {
        padding: 0 20px;
        opacity: 1;
    }

    .trial-section__button {
        width: 100%;
        height: 60px;
        padding-top: 10px;
        padding-right: 40px;
        padding-bottom: 10px;
        padding-left: 40px;
        opacity: 1;
        white-space: nowrap;
    }
}

@media screen and (max-width: 375px) {

    .trial-section {
        padding-top: 30px;
        padding-right: 20px;
        padding-bottom: 30px;
        padding-left: 20px;
    }

    .trial-section__form {
        width: 100%;
    }

    .trial-section__button {
        white-space: normal;
    }

    .trial-section__title {
        margin: 0;
    }

    .trial-section__input {
        font-size: 16px;
    }
}