#form {}

#form .heading {
    margin-bottom: 38px;
    max-width: 880px;
}

#form .form__form {
    border: 1px solid var(--stroke);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background: #C2CACE;
    display: flex;
    gap: 60px;
    padding-left: 130px;
    padding-top: 74px;
    position: relative;
    min-height: 400px;
}

#form .form__form::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* background-image: url(images/form-bg.svg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

#form .form__img {
    object-fit: contain;
    position: absolute;
    bottom: 18px;
    right: 87px;
    max-height: 645px;
    height: clamp(21.875rem, 6.868rem + 34.3vw, 40.313rem);
}

#form .inputs__wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

#form .btn {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
}

#form .form__text {
    max-width: 240px;
    color: var(--black);
}

#form .form__holder {
    max-width: 620px;
    width: 100%;

}

#form .privacy {
    color: var(--black);
    font-size: 14px;
    text-align: center;
}

#form .privacy a {
    text-decoration: underline;
    color: var(--black);
    font-size: 14px;
}

#form .privacy a:hover {
    color: var(--green);
}

@media(max-width: 1500px) {
    #form .form__form {
        padding: 30px;
        flex-direction: column;
        gap: 30px;
    }

    #form .form__text {
        max-width: 60%;
    }

    #form .form__holder {
        max-width: 60%;
    }

    #form .form__img {
        right: 18px;
    }

    #form .heading {
        max-width: 60%;
    }
}

@media(max-width:700px) {
    #form .heading {
        max-width: 100%;
    }

    #form .form__img {
        display: none;
    }

    #form .form__text {
        max-width: 100%;
    }

    #form .form__holder {
        max-width: 100%;
    }

    #form .form__form {
        min-height: unset;
        flex-direction: column-reverse;
    }
}

@media(max-width:500px) {
    #form .form__form {
        padding: 20px;
    }
}