login {
    background-color: var(--background);
    zoom: 0.8;
    /*-moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);*/
}
a {
    cursor: pointer;
}
login .title {
    font-size: 80px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--pico-primary-background);
}
login page {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 4%;
    padding-right: 4%;
}
label {
    color: var(--main-text);
}
.email {
    background: var(--pico-blockquote-footer-color);
    padding: 4px;
    margin: 0 10px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-weight: 400;
    color: var(--alt-text);
    position: relative;
}
.email:after {
    content: '\00D7';
    position: absolute;
    font-family: Arial;
    right: 13px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    cursor: pointer;
}
.left-column {
    flex-grow: 1;
    background: url(../apps/directory/assets/providers-graphic.png);
    background-color: var(--pico-primary-background);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}
#page-1 {
    animation: FadeInLeft 1s 1s forwards;
}
.sign-in-options {
    display: none;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 25px;
}
.sign-in-options button {
    background: white;
    border: 0.0625rem solid black;
    color: var(--main-text);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}
p.center {
    text-align: center;
}
.form-flex {
    display: flex;
    gap: 20px;
}
.checkbox-group small {
        padding-left: 38px;
        margin-top: -29px;
}
.back {
    background: var(--pico-form-element-background-color);
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}
.back:hover {
    background: var(--background);
}