
body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Roboto', sans-serif;
}

.page {
    display: flex;
    min-height: 100vh;
    padding: 45px 50px;
}
.page__left {
    flex: 1;
}
.page__center {
    display: flex;
    align-items: center;
}
.page__right {
    flex: 1;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-left: 45px;
}

.login {
    width: 1100px;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 3px 6px rgba(0 0 0, 0.16);
}
.login__left {
    padding: 85px 50px 45px 50px;
    background-color: #fff;
    color: #484747;
}
.login__logo {
    width: 220px;
}
.login__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.login__title {
    font-size: 27px;
    margin-top: 80px;
    margin-bottom: 35px;
}

.error_message {
    color: #AF1030;
    margin-bottom: 15px;
}
.login__left input[type="text"],
.login__left input[type="password"] {
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    border-bottom: 2px solid #E9E9F0;
    width: 100%;
    font-size: 15px;
    color: #484747;
    padding-bottom: 7px;
    padding-left: 3px;
}
.login__left input[type="text"]::placeholder,
.login__left input[type="password"]::placeholder {
    color: #484747;
}
.row_password {
    margin-top: 30px;
    margin-bottom: 10px;
}
.row_remember {
    display: flex;
    align-items: center;
}
.row_remember input {
    -webkit-appearance: none;
    outline: none;
    width: 13px;
    height: 13px;
    border: 1px solid #808495;
    border-radius: 3px;
    position: relative;
}
.row_remember input:after {
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 3px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    top: 2px;
    left: 2px;
}
.row_remember input:checked {
    background-color: #808495;
}
.row_remember label {
    padding-left: 7px;
    font-size: 13px;
}
.row_submit {
    margin-top: 30px;
}
.row_submit input {
    background-color: #AC0633;
    border: none;
    color: #fff;
    width: 145px;
    height: 45px;
    border-radius: 4px;
    margin: auto;
    padding: 0;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}
.row_submit input:hover {
    background-color: #950421;
}
.login__forgot {
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}

.login__right {
    position: relative;
    flex: 1;
}
.login__right img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login__right:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(304deg, #000, rgba(34, 34, 34, 0.6));
    opacity: 0.7;
}

.applogin {
    margin-top: 50px;
}
.applogin__title {
    font-size: 13px;
    margin-bottom: 5px;
}
.applogin__link {
    width: 160px;
    display: block;
}
.applogin__link img {
    display: block;
    width: 100%;
    height: auto;
}
.infos__logo {
    display: block;
    width: 135px;
    margin-bottom: 45px;
}
.infos__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.contact__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    white-space: nowrap;
}
.contact__item:hover {
    opacity: 0.6;
}
.contact__item:last-child {
    margin-bottom: 0;
}
.contact__icon {
    width: 35px;
}
.contact__icon img {
    width: 19px;
    height: auto;
    display: block;
}
.contact__title {
    font-weight: 700;
}
.contact__subtitle {
    color: #9D9D9D;
}

@media screen and (max-width: 1500px) {
    .page {
        flex-direction: column;
    }
    .page__left {
        display: none;
    }
    .page__center {
        flex: 1;
        justify-content: center;
    }
    .login {
    }
    .page__right {
        flex: none;
        padding-left: 0;
        padding-top: 35px;
    }
    .infos {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    .infos__logo {
        margin: 0;
    }
}
@media screen and (max-width: 500px) {
    .page {
        padding: 35px 30px;
    }
    .login__left {
        width: 100%;
        padding: 45px 35px;
    }
    .login__right {
        display: none;
    }
    .infos {
        display: block;
    }
    .infos__logo {
        margin-bottom: 25px;
    }
}