.modal-body-auth {
    background: rgb(163, 132, 104);
}
.modal-authenticate.login__active .modal-authenticate-logout,
.modal-authenticate.login__active .modal-authenticate-register,
.modal-authenticate.login__active .modal-authenticate-forgot {
    display: none;
}
.modal-authenticate.register__active .modal-authenticate-logout,
.modal-authenticate.register__active .modal-authenticate-login,
.modal-authenticate.register__active .modal-authenticate-forgot {
    display: none;
}

.modal-authenticate.logout__active .modal-authenticate-login,
.modal-authenticate.logout__active .modal-authenticate-register,
.modal-authenticate.logout__active .modal-authenticate-forgot {
    display: none;
}

.modal-authenticate.forgot__active .modal-authenticate-login,
.modal-authenticate.forgot__active .modal-authenticate-register,
.modal-authenticate.forgot__active .modal-authenticate-logout {
    display: none;
}

.modal-authenticate-register h5,
.modal-authenticate-login h5,
.modal-authenticate-logout h5,
.modal-authenticate-forgot h5 {
    margin: 0;
}
.modal-authenticate-register h4,
.modal-authenticate-login h4,
.modal-authenticate-logout h4,
.modal-authenticate-forgot h4 {
    margin: 0.25rem;
}
.modal-authenticate .close {
    position: absolute;
    right: 0.5rem;
    border-radius: 50%;
    background: #9b591c;
    opacity: 1;
    color: wheat;
    height: 1.5rem;
    width: 1.5rem;
    line-height: 1rem;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.auth-button-enabled {
    pointer-events: auto;
    opacity: 1;
}
.auth-button-enabled:hover {
    cursor: pointer;
}

.auth-button-disabled {
    pointer-events: none;
    opacity: 0.4;
}
.auth-button-disabled:hover {
    cursor: not-allowed;
}

@media (max-width: 428px) {
    .modal-authenticate-register h5,
    .modal-authenticate-login h5,
    .modal-authenticate-logout h5,
    .modal-authenticate-forgot h5 {
        font-size: 0.7rem;
    }
}