/* Form container */
.form_container{
    width: 500px;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--grey2);
    padding: 30px;
    box-shadow: 0 0px 10px 0 rgba(23, 28, 36, 0.2);
}

/* Informational message after submit */
#informational-message{
    display: none;
    padding-bottom: 10px;
}

/* Informational message + btn div */
.send_form_div{
    margin-top: 25px;
}

/* Form title + radio button div */
.form_title_radio_btn{
    margin-bottom: 25px;
}

/* Radio button div */
.radio_button_div{
    margin-top: 15px;
    display: flex;
    gap: 30px;
}

/* Specific radio btn */
.specific_radio_btn{
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Form field */
.custom_form{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Form fields */
.custom_form_input{
    width: 100%;
}

/* Long message field */
.long_input{
    height: 100px;
}

/* Specific form field */
.custom_forms_div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form field label */
.custom_form > .body3{
    font-weight: 500;
}

/* Form field placeholder */
.custom_form > input::placeholder, .custom_form > input::-ms-input-placeholder {
    font-size: 14px;
}

/* Site politics div */
.form_site_politics{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Site politics text */
.form_site_politics span{
    font-family: "Poppins";
    font-weight: 500;
}

/* Form button */
.site_politics_btn{
    color: var(--purple1);
    text-decoration: underline;
}

.verificationResourceCodes{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

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

    /* Form container */
    .form_container{
        width: 100%;
        padding: 20px;
    }

    /* Form button */
    #send-form-btn{
        height: 45px;
        margin-top: 20px;
    }

    /* Form title */
    .form_title_radio_btn .h3{
        font-size: 16px;
    }

    /* Form title div */
    .form_title_radio_btn{
        margin-bottom: 20px;
    }
}