/* == Modal Form */
.box_modal_form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: none;
}

.box_modal_form_content {
    margin: auto;
    max-width: 700px;
    width: 100%;
    position: relative;
    float: left;
    padding: 0 20px;
}


.close_modal_form b {
    position: absolute;
    right: 0;
    padding: 12px 19px 12px 19px;
    background: #d12121;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

/* Modal Form == */

/* == Formulário: Estilização */
.main_formulario_modal h4 {
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
}

.formulario_modal_corp {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.formulario_modal_corp .inputs {
    max-width: 500px;
    width: 100%;
    height: 50px;
    background: #f3f3f3;
    margin-bottom: 10px;
    border: 2px solid #f3f3f3;
    border-radius: 3px;
    padding-left: 15px;
    text-align: left;
    font-size: 1em;
}

.formulario_modal_corp .bot_corp {
    max-width: 500px;
    width: 100%;
    height: 52px;
    background: #01578e;
    margin-bottom: 20px;
    border: none;
    border-radius: 3px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 1.4em;
    cursor: pointer;
}

.formulario_modal_corporativo .bot_corp:hover {
    background: #014274;
    transition: all 0.5s ease;
}

.erro_input {
    color: #d12121;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    display: none;
}

/* Formulário: Estilização == */

@media (max-width: 576px) {
    .main_formulario_modal h4 {
        font-size: 20px;
    }

    .main_formulario_modal h4 br {
        display: none;
    }
}