/* static/login_style.css */

/* --- Общие стили --- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* --- Обертка для страниц входа/регистрации/приветствия --- */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* --- Левая панель с изображением --- */
.image-panel {
    flex: 1;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1280&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

.image-panel h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.image-panel p {
    font-size: 1.25rem;
    max-width: 500px;
    font-weight: 400;
}

/* --- Правая панель с формой --- */
.form-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.info-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #3498db;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none; /* Для ссылок-кнопок */
    display: block; /* Для ссылок-кнопок */
    text-align: center; /* Для ссылок-кнопок */
    box-sizing: border-box;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.switch-form-text {
    text-align: center;
    margin-top: 25px;
    color: #7f8c8d;
}

.switch-form-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
}

.switch-form-text a:hover {
    text-decoration: underline;
}

/* --- Сообщения (Alerts) --- */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}
.alert-error, .alert-danger { background-color: #f8d7da; color: #721c24; }
.alert-success { background-color: #d4edda; color: #155724; }


/* --- Адаптивный дизайн --- */
@media (max-width: 800px) {
    .login-wrapper {
        flex-direction: column;
    }
    .image-panel {
        min-height: 250px;
        flex: 0;
    }
}