.log-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Вся форма */
.log-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Поля формы */
.log-input input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Кнопка Войти */
.log-input button {
    padding: 10px;
    background-color: #007bff; /* Синий */
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.log-input button:hover {
    background-color: #0056b3;
}

/* Заголовок "Сообщение" */
.log-h1 {
    font-size: 20px;
    margin-top: 20px;
    color: #333;
    text-align: center;
}

/* Сообщение */
.log-message {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

/* Цвет по категории */
.success {
    color: green;
    font-weight: bold;
}

.error {
    color: crimson;
    font-weight: bold;
}
