.login {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.login__image {
    width: 55%;
}

.login__content {
    position: absolute;
    width: 55%;
    height: 100%;
    right: 0;
    background: var(--color-white);
    border-radius: 120px 0 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login__logo {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.login__logo > svg {
    max-width: 407px;
}

.login__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 66px;
    color: var(--color-silver);
    margin-bottom: 30px;
    text-align: center;
}

.login__form {
    display: flex;
    flex-direction: column;
    max-width: 390px;
    width: 100%;
}

.login__form.hidden {
    display: none;
}

.login__form > .form-label {}

.login__form > .form-input {}

.login__form > .btn {}


.login__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 30px;
}

.login__form-desc {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-light-silver);
}

.login__form-change {
    max-width: 185px;
    margin: 15px auto 0;
}