body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
}

.auth-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Левая часть — форма */
.auth-left {
    flex: 1;
    max-width: 700px;
    width: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Правая часть — изображение */
.auth-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-right img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Скроем картинку на мобильных */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        max-width: 100%;
        padding: 40px 20px;
    }

    .auth-right {
        display: none;
    }
}

/* Стилизация контента внутри формы */
.logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.logo .header-link {
    color: white;
    text-decoration: underline;
}

.auth-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-form h1 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    text-align: center;
}

/* Поля ввода */
.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.08);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: background 0.3s, border-color 0.3s;
}

.form-group input:focus {
    border-color: #fff;
    outline: none;
    background-color: rgba(255,255,255,0.15);
}

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

/* Кнопка */
.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #E36666;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c95454;
}

/* Ссылки */
.link-below {
    margin-top: 20px;
    text-align: center;
}

.link-below a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

/* Ошибка */
.error {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
    text-align: center;
}
