body{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    background: #F5F5F5;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

main section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img.logo{
    display: block;
    width: 50%;
    margin-bottom: 50px;
}

form{
    width: 30%;
}

.form-group{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

form .form-input{
    width: 60%;
}


form input{
    width: 100%;
    height: 40px;
    background: #fff;
    border: 2px solid #c4c4c4;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    color: #424242;
    text-align: center;
}

form input.warning{
    border: 2px solid #DD2C00!important;
    background: #FBE9E7;
    color: #EA2D3F;
}

form input.warning:focus{
    outline: none !important;
    border: 2px solid #DD2C00!important;
}

form .help-input{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #EA2D3F;
}

form .button-wrap{
    width: 30%;
    margin-bottom: 100px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

form .button-wrap button{
    width: 100%;
    height: 40px;
    background: #005BEA;
    border: 1px solid #005BEA;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

form .button-wrap button[disabled]{
    background: #B3E5FC;
    border: 1px solid #B3E5FC;
    color: #616161;
    cursor: not-allowed;
}

form .button-wrap button:active{
    background: #0091EA;
    border: 1px solid #0091EA;
    box-shadow: 0px 0px 5px #0D47A1 inset;
    color: #eeeeee;
}

form p{
    margin: 2px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #616161;
}

form .message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 0px;
    border-radius: 5px;
}

form .message img{
    width: 50px;
    height: 50px;
}

form .message p{
    margin-top: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

form .success {
    border: 2px solid green;
    background: #E8F5E9;
}

form .success p{
    color: #32BEA6;
}

form .error {
    border: 2px solid red;
    background: #FBE9E7;
}

form .error p{
    color: #EA2D3F;
}

form .hidden {
    display: none;
}

p.help{
    margin: 2px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #424242;
}

.help-phone{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.help-phone a{
    margin-left: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #424242;
    text-decoration: none;
}

.help-phone a:visited{
    color: #424242;
}


@media only screen and (max-width: 1200px) {
    form{
        width: 50%;
    }

    form input{
        letter-spacing: 0px;
    }
}

@media only screen and (max-width: 768px) {
    img.logo{
        width: 80%;
    }

    .form-group{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    form .form-input{
        width: 80%;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 425px) {
    form{
        width: 70%;
    }
    
    form .form-input{
        margin-top: 20px;
    }

    form .button-wrap{
        width: 50%;
    }    
}