/* UTILITIES */

.h-max-wh {
    height: calc(100vh - var(--guest-header-height) - var(--guest-footer-height) - 1px);
}

/* HEADER */
#header {
    min-height: var(--guest-header-height);
    display: flex;
    align-items: center;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 1;
    position: relative;
}
#logo {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#logo .tag-divider {
    border-right: 0.1rem solid #e0e0e0;
    height: 2rem;
    margin: 0 1rem;
}
#logo .tag-name {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* FOOTER */
#footer {
    min-height: var(--guest-footer-height);
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
    border-top: 1px solid #ADADAD;
}
#footer #footer-version {
    font-size: 0.75rem;
}
#footer-nav {
    display: flex;
    flex-direction: row;
    margin: auto;

}
#footer-nav .copyright:after {
    content: '|';
    margin-left: .75rem;
}
.footer-nav_links {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    gap: .75rem;
    list-style: none;
    padding-left: .75rem;
}
.footer-nav_links li {
    font-size: 0.8125rem;
}
.footer-nav_links li + li:before {
    content: '|';
    margin-right: .75rem;
}
.footer-nav_links li a {
    color: var(--color-black);
    text-decoration: none;
}
.footer-nav_links li a:hover {
    text-decoration: underline;
}

/* CONTENT */
main {
    background: var(--bg-main);
    min-height: calc(100vh - var(--guest-header-height) - var(--guest-footer-height));
}

/* AUTH */

.card-auth {
    background: none;
    max-width: 32rem;
    margin: auto;
}
.card-auth .card-header {
    background: none;
    font-size: 2rem;
    text-align: center;
}

.card-auth label {
    font-size: 0.9375rem;
    font-weight: normal;
}

.card-auth input[type="text"],
.card-auth input[type="email"],
.card-auth input[type="password"],
.card-auth select {
    font-size: 0.9375rem;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid #AAAAAA;
}

