/* Login page style*/
.login_form{
    text-align: center;
}
.login_page_container{
    height: 100vh;
    overflow: auto;
    background-color: #711515;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.login_form_container{
    padding: 50px 140px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    justify-content: center;

}
.login_button{
    background: #ffffff;
    border: 2px solid #711515;
    color: #711515;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
}
.login_form_form td{
    text-align: center;
}
.logo_login {
    padding-bottom: 20px;
}
login_form_form label{
    font-size: 20px;
}

/* register page style*/
.register_page_container{
    height: 100vh;
    overflow: auto;
    background-color: #711515;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.register_form_container{
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 30%;
    justify-content: center;
}
.logo_register {
    padding-bottom: 20px;
}
.register_form_form h2{
    text-align: center;
}
.register_form_form p{
    text-align: center;
}
