.Auth_Form{
    width: 40%;
    margin: 5% 30% 5% 30%;
    padding: 5%;
    border-radius: 2px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}
.form_header{
    text-align: center;
    color: #A30821FF;
}
.Auth_Form input{
    width: 100%;
    margin: 1% 0 1% 0;
    padding: 12px;
    border: 1px solid #4a5568;
    border-radius: 2px;
    background-color: white;
    transition-duration: 300ms;
}
.Auth_Form input:focus{
    border: 1px solid #2d79f3;
    outline: none;
}
.Auth_Form button{
    width: 100%;
    margin: 5% 0 5% 0;
    padding: 12px;
    border: 0;
    border-radius: 2px;
    background-color: #A30821FF;
    color: white;
    transition-duration: 300ms;
}
.Auth_Form button:hover{
    background-color: #ce5c70;
}
.other_options{
    text-align: center;
}
@media (max-width: 1000px) {
    .Auth_Form {
        width: 70%;
        margin: 5% 15% 5% 15%;
    }
}
@media (max-width: 700px) {
    .Auth_Form {
        width: 80%;
        margin: 5% 10% 5% 10%;
    }
}