#login-help-page {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    background-color: #e5e5e5;
    margin: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    min-height: 100%;
}

#login-help-page.hidden {
    display: none;
}

.login-help-container {
    max-width: 800px;
    flex-grow: 1;
    padding: 16px;
}

.login-notification-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.login-notification-text {
    font-size: 16px;
    font-weight: normal;
    opacity: 0.8;
}

.login-help-title-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: baseline;
    margin: 40px 0;
}

.login-help-title {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.accordion-container {
    margin-top: 40px;
}

.vhv-accordion {
    margin-bottom: 16px;
}

.login-help-footer {
    background-color: white;
    border-top: 1px solid lightgrey;
    height: 68px;
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
}

.login-help-footer-container {
    max-width: 800px;
    height: 100%;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.accordion-icon {
    transition: 200ms;
}

.vhv-accordion.open .accordion-icon {
    transform: rotate(45deg);
}
