:root {
    --color-spot-700: #5D6066;
    --color-spot-300: #BCBDBC;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: url("../images/cust-login-bg.jpg") no-repeat center left fixed;
    background-size: cover;
}

fieldset {
    border: none;
    padding: 0;
}

.container {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: center;
    overflow-y: auto;
    height: calc(100vh - 45px); /* subtract footer */
}

.validation-summary-errors ul { 
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.validation-summary-errors li { 
    min-height: 26px;
    white-space: pre-line;
}

.spot-signin {
    margin-top: 20vh; /* spot says.. ALWAYS 20% from top */
    min-width: 450px;
    min-height: min-content;
}

@media screen and (max-height: 906px) {
    .spot-signin {
        margin: 10vh 0; /* spot says.. ALWAYS 20% from top... ignoring cuz it looks bad on short vh.. shrug */
    }
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    min-height: 45px;
    color: var(--color-spot-700);
}

footer .spot-link.spot-link--small {
    color: var(--color-spot-700) !important;
    font-size: 10px;
}

footer .footer-right,
footer .footer-left {
    display: flex;
    max-width: 46%;
}

footer .footer-right a {
    padding: 0 4px;
    border-left: 1px solid var(--color-spot-300);
}

footer .footer-right span:first-child a:first-child {
    border-left: none;
}

footer .idexx-logo {
    height: 15px;
    margin-left: 8px;
}

@media only screen and (max-width: 1042px) {
    footer .footer-left {
        max-width: 55%;
    }
    footer .footer-right {
        max-width: 40%;
    }
    footer .idexx-logo {
        display: none;
    }
}

@media only screen and (max-width: 860px) {
    .main {
        height: calc(100vh - 58px); /* subtract footer */
    }
    footer .footer-left {
        max-width: 70%;
    }
    footer .footer-right {
        max-width: 25%;
        display: flex;
        flex-direction: column;
    }
    footer .footer-right span a:first-child {
        border-left: none;
    }
}

@media only screen and (max-width: 700px) {
    .main {
        height: calc(100vh - 84px); /* subtract footer */
    }
    footer .footer-right span {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    footer .footer-right a {
        border-left: none;
    }
}
