
body {
    margin: 0;

    font-family: Arial, sans-serif;

    background-color: #ffe6ec;	

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;
}


/* =========================
   ГЛАВНОЕ ОКНО
   ========================= */

.login-box {
    width: 800px;

    min-height: 500px;

    display: flex;

    background-color: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px #d9a5b2;
}


/* =========================
   ЛЕВАЯ ЧАСТЬ С КАРТИНКОЙ
   ========================= */

.login-image {
    width: 45%;

    background-image: url("beauty.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: white;

    text-align: center;
}


/* Заголовок BEAUTY */

.login-image h1 {
    font-family: Georgia, serif;

    font-size: 40px;

    letter-spacing: 5px;

    margin: 0;
}


/* Текст */

.login-image p {
    font-size: 18px;
}


/* =========================
   ПРАВАЯ ЧАСТЬ
   ========================= */

.login-form {
    width: 55%;

    padding: 60px 50px;

    box-sizing: border-box;

    text-align: center;
}


/* Заголовок */

.login-form h2 {
    font-family: Georgia, serif;

    font-size: 35px;

    color: #a94f68;

    margin-top: 0;

    margin-bottom: 10px;
}


/* Подзаголовок */

.subtitle {
    color: #9b7882;

    margin-bottom: 35px;
}


/* =========================
   НАЗВАНИЯ ПОЛЕЙ
   ========================= */

.login-form form > label {
    display: block;

    text-align: left;

    margin-top: 15px;

    margin-bottom: 7px;

    color: #704550;

    font-weight: bold;
}


/* =========================
   ПОЛЯ ВВОДА
   ========================= */

input[type="text"],
input[type="password"] {
    width: 100%;

    padding: 13px;

    box-sizing: border-box;

    border: 1px solid #e2a9b7;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

    background-color: #fff7f9;
}


/* Поле при нажатии */

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #c8798c;

    box-shadow: 0 0 5px #e5aab8;
}


/* =========================
   ОСТАВАТЬСЯ НА САЙТЕ
   И ЗАБЫЛИ ПАРОЛЬ
   ========================= */

.password-options {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 12px;

    box-sizing: border-box;
}


/* Оставаться на сайте */

.stay-on-site {
    display: flex !important;

    align-items: center;

    gap: 6px;

    margin: 0 !important;

    color: #704550;

    font-size: 14px;

    font-weight: normal !important;

    cursor: pointer;

    white-space: nowrap;
}


/* Сам чекбокс */

.stay-on-site input[type="checkbox"] {
    width: 15px !important;

    height: 15px;

    margin: 0;

    padding: 0;

    cursor: pointer;
}


/* Забыли пароль */

.forgot-password {
    color: #bd687d;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;

    white-space: nowrap;
}


/* Наведение на "Забыли пароль?" */

.forgot-password:hover {
    text-decoration: underline;
}


/* =========================
   КНОПКА
   ========================= */

button {
    width: 100%;

    margin-top: 30px;

    padding: 14px;

    border: none;

    border-radius: 10px;

    background-color: #c8798c;

    color: white;

    font-size: 17px;

    cursor: pointer;
}


/* Наведение на кнопку */

button:hover {
    background-color: #a95e72;
}


/* =========================
   РЕГИСТРАЦИЯ
   ========================= */

.register {
    margin-top: 25px;

    color: #8d6a74;
}


.register a {
    color: #bd687d;

    text-decoration: none;

    font-weight: bold;
}


.register a:hover {
    text-decoration: underline;
}


/* =========================
   ТЕЛЕФОН
   ========================= */

@media (max-width: 700px) {

    .login-box {
        width: 90%;

        min-height: auto;

        display: block;
    }


    .login-image {
        width: 100%;

        height: 180px;
    }


    .login-form {
        width: 100%;

        padding: 40px 30px;
    }


    .password-options {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }
}