.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page_content {
    width: 460px;
    max-width: calc(100% - 32px);
    padding: 100px 0 200px;
}

.login-page_title {
    margin-bottom: 40px;
}

.login-page_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-page_form .btn-link {
    margin-left: auto;
}
.login-page_form button {

}
.login-page_form a.btn {

}

.form-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.form-line span {
    position: relative;
    display: inline-flex;
    width: 50%;
    max-width: 95px;
    justify-content: center;
    background: #F5F5F5;
    font-weight: 400;
    line-height: 16px;
    z-index: 1;
}
.form-line:after {
    content: '';
    position: absolute;
    top:50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E9E9E9;
}

.reset-page_title {
    margin-bottom: 16px;
}

.login-page_btn {
    height: 50px;
    padding: 12px 12px;
}

.login-page_form .flex-center .btn-link {
    margin-left: 0;
}

@media (max-width: 768px) {
    .login-page_content {
        width: 100%;
        max-width: 100%;
        padding: 40px 16px;
    }

    .login-page_title {
        margin-bottom: 32px;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }
}