.callbackForm{
    padding: 60px 40px;
    border-radius: .5rem;
    background-color: var(--main-green);
    background-image: url("/img/spot.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.callbackForm h2{
    font-size: 1.8em !important;
    font-weight: bold;
    color: var(--main-black);
    margin-bottom: 30px;
}
.callbackForm input{
    width: 300px;
    height: 50px;
    color: #464646;
    font-weight: bold;
    font-size: 1.4em;


    border: none;
    border-radius: .25rem;
    text-indent: 15px;
}
.callbackForm input::-webkit-outer-spin-button,
.callbackForm input::-webkit-inner-spin-button {
    display: none;
    line-height: .9em;
}
.callbackForm input::placeholder{
    font-size: 1.2em;
    font-weight: 400;
}
.callbackForm label{
    position: relative;
}
.callbackForm .submit{
    position: absolute;
    right: 2px;
    top: 2px;
    width: 46px;
    height: 46px;
    background-color: var(--main-green);
    font-size: 2em;
    color: #fadb00 ;
    border-radius: .2rem;
    border: none;
    text-shadow: 1px 1px 3px transparent;
    transition: .2s;
}
.callbackForm .submit:hover{
    background-color: #536955;
    color: whitesmoke;
}


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

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

}
@media screen and (max-width: 426px) {
    .callbackForm {
        padding: 20px;
    }
    .callbackForm h2{
        font-size: 1.3em !important;
    }
    .callbackForm label{
        width: 100%;
    }
    .callbackForm input{
        width: 100%;
    }

}
@media screen and (max-width: 321px) {
    .callbackForm input{
        font-size: 1.2em;
    }

}