/* ТОЛЬКО специфичные стили для страницы входа */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    width: 900px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-image {
    flex: 1;
    /* Новый градиент вместо красного */
    background: linear-gradient(135deg, #ddd5cc 0%, #ded7cd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50; /* Темный текст для контраста */
    padding: 40px;
    position: relative;
}

.login-image-content {
    text-align: center;
    width: 100%;
}

/* Стили для логотипа */
.logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image img {
    max-width: 400px; /* Регулируй размер по необходимости */
    max-height: 400px;
    width: auto;
    height: auto;
}

.login-image h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #343434;
}

.login-image p {
    font-size: 16px;
    line-height: 1.5;
    color: #363636;
    font-weight: 400;
}

.login-form {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
}

.logo span {
    color: #667eea;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items:  flex-start;
    gap: 8px;
}

.remember-me input {
    width: 20px;
    height: 20px;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
}

.forgot-password:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 95%;
        height: auto;
        max-height: 90vh;
    }

    .login-image {
        padding: 30px 20px;
        min-height: 200px;
    }

    .logo-image img {
        max-width: 100px;
        max-height: 100px;
    }

    .login-image h2 {
        font-size: 22px;
    }

    .login-image p {
        font-size: 14px;
    }

    .login-form {
        padding: 30px 20px;
    }
}

/* Анимация для логотипа */
.logo-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image img:hover {
    transform: scale(1.03);
}