.auth_form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.auth_form form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.auth_form h1 {
    color: #FF9400;
    font-weight: bold;
    font-size: 2.5rem;
}
.auth_form form > div {
    margin: 1.5rem 0;
}
.auth_form form > div:nth-of-type(2) {
    width: 75%;
}
.auth_form .th_custom {
    background-color: #3490dc;
    color: #fff;
    width: 15rem;
}
.auth_form .button_main_action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 2.5rem;
}
.auth_form .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 2.5rem;
}
/* @media screen and (max-width: 1366px) {
    .auth_form form>div:nth-of-type(2) {
        width: 90%;
    }
} */

@media screen and (max-width: 1080px) {
    .auth_form .th_custom {
        width: 10rem;
    }
}

