/* Общие стили */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.middle-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Стили для формы входа */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3367d6;
}

/* Стили для страницы ошибки */
.error-message {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 16px;
}

.return-btn {
    display: inline-block;
    margin-top: 15px;
    color: #4285f4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.return-btn:hover {
    color: #3367d6;
    text-decoration: underline;
}

/* Дополнительный стиль для 404 (опционально) */
.not-found-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #757575;
}