
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*overflow: auto;*/
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

.modal-body h1 {
    font-weight: bold;
    color: #F74519;
    margin-bottom:30px;
    font-size:30px;
}

.modal-body input {
    height: 35px;
    margin:5px 0px;
    border-radius:10px;
    border: 2px solid #F74519;
    width: 100%;
}

.enviar-email {
    background: #F74519;
    color: #FFF;
    font-weight: bold;
    border-radius: 10px;
    border: 0px;
    padding:10px;
    height:35px;
    width:60%;
    margin-top: 10px;
}

.form-email-modal {
    width:50%;
    margin: 20px auto;
}


.close-modal {
    cursor: pointer;
}

.form-footer {
    width: 100%;
    text-align: center;
}

.form-footer input {
    height: 35px;
    margin:5px 0px;
    border-radius:10px;
    border: 2px solid #42A16B;
    width: 40%;
}

.form-footer button {
    background: #42A16B;
    color: #FFF;
    font-weight: bold;
    border-radius: 10px;
    border: 0px;
    padding:10px;
    height:35px;
    width:30%;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .form-footer input {
        width:70%;
    }

    .form-footer button {
        margin-bottom: 10px;
    }
}