
body{
    font-family: "Inter", sans-serif;
    background-color: #fff;
}

*,
*::after,
*::before{
    box-sizing: border-box;
}


.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

.button-login{
    background-color: #0E2C4C;
    border: 3px solid transparent;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.button-login:focus-visible{
    background-color: #0E2C4C;
    color: #fff;
    border: 3px solid #008CBA;
}

.button-login:hover{
    background-color: #164477;
}

.footer-login {
    background-color: #0E2C4C;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}
