﻿.logo {
    margin: 10px 0 10px 30px;
}

.header {
    width: 100%;
    background: var(--color-primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.page {
    background-color: #F3F3F3;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 70px);
    justify-content: space-between;
    padding: 10px 0 25px 0;
}

.page-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.fixed-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    height: 75px !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.login {
    width: min(950px, 95vw);
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding-bottom: 20px;
    background-color: white;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: solid .5px #DDDDDD;
}

    .login h1 {
        margin-top: 30px;
        color: var(--color-primary);
        font-weight: 700;
    }

    .login p {
        margin: 10px 3vw;
    }

.row-login {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: min(400px, 95%);
    margin: auto;
}


button.btn.btn-primary {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    margin: 25px 0;
}

.control-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: var(--font-size);
    color: #333;
    margin-top: 15px;
}

.login-input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    height: inherit;
    padding: 10px 15px;
}

.or-circle {
    font-style: italic;
    background: var(--color-additional-medium-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 20px auto 40px;
}


.sub-menu-panel {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .sub-menu div {
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: var(--color-additional-medium-dark);
    }

    .sub-menu a {
        text-decoration: none;
        color: white;
        text-decoration-color: var(--color-secondary);
    }

        .sub-menu a:hover {
            text-decoration: underline;
            color:;
        }

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: min(950px, 95vw);
    padding-top: clamp(10px, 2vw, 20px);
    padding-right: clamp(20px, 4vw, 40px);
    padding-bottom: clamp(5px, 1.5vw, 10px);
    padding-left: clamp(20px, 4vw, 40px);
    background-color: var(--color-primary);
    border-radius: 0 0 6px 6px;
}

.contact {
    margin-top: 15px;
    color: white;
    display: flex;
    flex-direction: row;
}

    .contact div::after {
        content: "|";
        margin: 0 5px;
    }

.address {
    display: flex;
    flex-direction: row;
}

    .address a {
        color: var(--color-additional-medium-light);
    }

    .address div::after {
        content: "•";
        margin: 0 5px;
    }

    .contact :last-child::after, .address :last-child::after {
        content: "";
    }

@media (max-width: 641px) {
    footer {
        flex-wrap: wrap;
    }

    .sub-menu-panel {
        display: none;
    }

    .contact, .address {
        flex-direction: column;
    }

        .contact div::after, .address div::after {
            content: "";
        }

    .fixed-image {
        display: none;
    }
}

.phone {
    display: block;
    width: 320px;
    height: 50px;
    line-height: 0;
    text-indent: -9999px;
    background: url(../images/footer-855.ace.park.png) 0 0 no-repeat;
    background-size: contain;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptch-text {
    font-size: smaller;
    color: lightgray;
    text-align: left;
}