/* ----- GENERAL CLASSES ----- */
html, head, body, footer, div, p, a, li, ul, ol, span, h1, h2, h3, h4, h5, h6, label, button {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.error {
    border-color: red !important;
}

:root {
    --blue: #044398;
    --light-blue: #94c8e0;
    --red: #e70b4f;
    --light-brown: #e9c4a8;
}

/* ----- HEADER ----- */
.header {
    border-bottom: 4px solid var(--blue);
}

.header-menu > p {
    padding: 28px 50px;
    color: white;
    font-size: 1.1rem;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.header-menu > p:first-child {
    background-color: var(--blue);
    font-weight: 300;
}

.header-menu > p > a {
    clear: both;
    vertical-align: middle;
}

.header-menu > p:last-child {
    padding: 28px 30px;
    background-color: var(--red);
}

/* ----- END HEADER ----- */

/* ----- FOOTER ----- */
.first-footer {
    background-color: var(--blue);
}

.first-footer .contact-info-footer {
    border-left: 2px solid white;
}

.first-footer p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.3rem;
}

.first-footer p span {
    font-weight: 700;
    text-transform: uppercase;
}

.second-footer {
    background-color: var(--light-blue);
}

.second-footer p {
    color: var(--blue);
    font-size: 0.88rem;
    line-height: 1rem;
    letter-spacing: -0.3px;
}

.second-footer p span, .second-footer p a {
    font-weight: 700;
}
/* ----- END FOOTER ----- */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer {
    position: relative;
}

.block-login {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-login .form-label {
    font-size: 1.1rem;
    line-height: 1.3rem;
}

.nav.nav-pills {
    font-weight: 500;
    font-size: 1.1rem;
}

.nav.nav-pills .active a {
    color: white;
    background-color: var(--red);
    padding: 8px 25px;
    border-radius: 10px;
}

#show-password, .show-new-password {
    background-color: var(--blue);
    color: white;
    border: 1px solid var(--blue);
}

.button-login, .button-login:hover {
    background-color: var(--blue);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.recovery-password, .recovery-password:hover {
    background-color: var(--light-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-login input, .form-login textarea {
    border: 1px solid var(--blue);
    border-radius: 7px;
    padding: 3px 10px;
}

.register-form input {
    width: 100%;
}

.errorlist {
    list-style: none;
    margin-bottom: 0px;
    padding: 0px;
}

.alert.alert-danger, .alert.alert-danger > p {
    font-size: 0.9rem;
}