.form_popup {
    box-sizing: border-box;
    color: #2C4268;
    background-color: #ffffff;
    position: relative;
    transition-property: opacity;
    transition-duration: 0.3s;
    padding: 2em 1em;
}
.form_popup.disabled {
    opacity: 0.5;
}
.form_popup.disabled:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.form_popup .title {
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.5em;
    text-align: center;
    font-size: 1.5em;
}
.form_popup .title:last-child {
    margin-bottom: 0;
}
.form_popup .desc {
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    font-size: 1em;
}
.form_popup .fields {
    margin: 0 0 2em;
}
.form_popup .fields:not(:first-child) {
    margin-top: 2em;
}
.form_popup .field {
    display: block;
}
.form_popup .field:not(:last-child) {
    margin: 0 0 1em;
}
.form_popup .field_title {
    display: block;
    letter-spacing: -0.005em;
    color: #53627C;
    font-size: 0.875em;
    margin: 0 0 0.25em;
}
.form_popup .text_input {
    border-radius: 0;
    text-align: left;
    padding: 0;
    border: none;
    border-bottom: 1px solid #EAF1FC;
    width: 100%;
}
.form_popup .submit_butt_wrap {
    margin: 0 0 2em;
    text-align: right;
}
.form_popup .agreement {
    display: flex;
}
.form_popup .agreement .custom_checkbox {
    margin-right: 0.5em;
    margin-top: 0.125em;
}
.form_popup .agreement_text {
    font-weight: 300;
    color: #53627C;
    letter-spacing: -0.005em;
    line-height: 1.5;
    font-size: 0.875em;
    max-width: calc(100% - 1.75em);
}