.Auth_Form{
    width: 40%;
    padding: 5%;
    margin: 5% 30% 5% 30%;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.form_header{
    text-align: center;
    color: #A30821FF;
}
.Auth_Form input{
    width: 100%;
    margin: 1% 0 1% 0;
    padding: 1% 2% 1% 2%;
    border: 1.5px solid #ecedec;
    border-radius: 2px;
    background-color: #fbfbfb;
    transition-duration: 300ms;
}
.Auth_Form input:focus{
    border: 1.5px solid #2d79f3;
    outline: none;
}
.Auth_Form button{
    border: 0;
    border-radius: 2px;
    background-color: #A30821FF;
    color: white;
    width: 100%;
    margin: 5% 0 5% 0;
    padding: 2%;
    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%;
    }
}