.login-container {
    display: flex;
    justify-content: center;
    height: 100%;
}

.login-container__form {
    width: 25%;
    padding: 40px;
}

.login-container__form img.logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 32px auto;
}

.login-container__form h1 {
    font-weight: 700 !important;
    font-size: 3.7rem !important;
    line-height: 4.7rem !important;
    margin-bottom: 32px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    color: var(--text-black) !important;
    text-align: center;
}

.login-container__form .separator {
    display: flex;
    align-items: center;
    margin: 32px 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text);
}

.login-container__form .separator::before,
.login-container__form .separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border);
    margin: 4px;
}

.login-container__form .form-text {
    margin-top: 8px;
}

.login-container__form .form-text a {
    color: var(--text-light);
    text-decoration: underline;
}

.login-container__form .form-text a:hover {
    color: var(--text);
    text-decoration: underline;
}

.login-container__form .form-bottom a {
    text-decoration: none;
    color: var(--vp-blue);
    font-weight: 600;
}

.login-container__form .form-bottom a:hover {
    text-decoration: none;
    color: var(--vp-blue-hover);
}

.login-container__form button {
    height: 44px;
    font-size: .9rem;
    font-weight: 600;
    width: 100%;
}

.login-container__form .form-bottom {
    margin-top: 16px;
    font-size: .95rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
}

@media screen and (max-width: 700px) {
    .login-container {
        min-height: 100%;
    }

    .login-container__form {
        width: 100%;
        padding: 64px;
        box-shadow: none;
    }

    .login-container__form h1 {
        font-size: 2.5rem !important;
        line-height: 3.5rem !important;
    }
}

@media screen and (min-width: 700px) and (max-width: 1000px) {
    .login-container__form {
        width: 70%;
        border: none;
        border-radius: 0;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
    .login-container__form {
        width: 50%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .login-container__form {
        width: 35%;
    }
}