.modal_popup{
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
}

.overlay_popup{
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0,0,0,0.6);
    z-index: 100;
}

.popup_container{
    text-align: center;
    padding-bottom: 15px;
}

.popup_label{
    margin-bottom: 0;
}

.popup_input{
    width: calc(100% - 20px);
    margin: 10px 0 auto;
}

.popup_button{
    margin: 0 auto;
    padding: 20px 30px;
    line-height: 0;
    color: white;
}

.popup_button:hover{
    color: white;
}

.popup_error{
    border:2px solid red!important;
}

@media (max-width: 650px){
    .modal_popup{
        max-width: 100%;
    }

    .popup_container{
        font-size: 50px;
    }

    input[type="email"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select{
        height: 70px;
    }

    .button, button, input[type="submit"], input[type="reset"], input[type="button"], .form-submit{
        height: 70px;
        font:50px 'FuturaBookCRegular';
    }
}