body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, violet, blue); /* Градиент от фиолетового к синему */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Тень за панелью */
    position: relative; /* Для правильного позиционирования тени */
    z-index: 1; /* Убедитесь, что панель выше фона */
}

h2 {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 20px); /* Уменьшение ширины на 20 пикселей */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #5cb85c;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

.error {
    color: red;
    margin-bottom: 10px;
}
