:root {
    --LoginCtaWidth: 30vw
}

.homepage-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

footer {
    background-color: var(--topbar-background);
    font-family: sans-serif;
    /*background-color: #212529;*/
    color: var(--topbar-text-color);
    min-height: 12vh;
    padding-top: 1em;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.footer-section-2 {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-section-2 > a {
    text-decoration: none;
    color: inherit;
    line-height: 1.5em;
    font-size: 1rem;
}

.footer-section-2 > a:hover {
    font-weight: bold;
    color: inherit;
}

.footer-section-3 {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contact-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-icons > a {
    color: rgb(170, 170, 170);
    font-size: 1.2em;
}


.login-container {
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0em;
    flex-direction: column;
}

.login-padding {
    flex-grow: 1;
}

#login-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.2em;
}

#login-content {
    width: var(--LoginCtaWidth);
}

.login-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}