/* Minification failed. Returning unminified contents.
(37,17): run-time error CSS1039: Token not allowed after unary operator: '-color-title'
(38,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(53,32): run-time error CSS1039: Token not allowed after unary operator: '-light-gray-border'
 */
#account {
    min-height: 100VH;
    height: 100VH;
    max-height: 100VH;
}
#account .sections {  
    display: flex;
    flex-flow: row;
    height: 100%;
}
#account .sections .section {
    height: 100%;
    width: 50%;
}
#account .sections .section.section-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#account .sections .section.section-form {
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
}
#account .sections .section.section-form .logo {
    height: auto;
    margin: 0 auto 4rem auto;
    width: 120px;
}
#account .sections .section.section-form form {
    max-width: 500px;
    width: 100%;
}
#account .sections .section.section-form .form-title {
    color: var(--color-title);
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
#account .sections .section.section-form .form-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 3rem;
}
#account .sections .section.section-form .link {
    font-size: 0.875rem;
}
#account .sections .section.section-form .section-form-footer {
    align-items: center;
    border-top: 1px solid var(--light-gray-border);
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 2rem 0;
    position: absolute;
    right: calc(50% - 200px);
    bottom: 0;
    width: 400px;
}
#account .sections .section.section-form .section-form-footer .footer-link {
    height: 2rem;
    margin-right: 1.25rem;
    opacity: 0.65;
    width: 2rem;
}
#account .sections .section.section-form .section-form-footer .footer-link:last-child {
    margin-right: 0;
}
#account .sections .section.section-form .section-form-footer .footer-link:hover,
#account .sections .section.section-form .section-form-footer .footer-link.active {
    opacity: 1;
}
#account .sections .section.section-form .section-form-footer .footer-link .footer-icon {
    height: 2rem;
    width: 2rem;
}

@media (max-width: 767px) {
    #account .section-banner {
        display: none;
    }
    #account .sections .section-form {
        padding: 0 15px;
        width: 100%;
    }
}
/*XS TO MD*/
@media (max-width: 991px) and (orientation: portrait) {
    #account .section-banner {
        display: none;
    }
    #account .sections .section-form {
        padding: 0 15px;
        width: 100%;
    }
}
