/* --- Стили для формы входа --- */
.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}
.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.error-message {
	animation: hideAnimation 0s ease-in 1s;
    animation-fill-mode: forwards;
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    display: none; /* Скрыто по умолчанию */
    text-align: left;
}
@keyframes hideAnimation {
    to {
	    display: none;	
        /*visibility: hidden;*/
       }
}
button {
    background-color: #5cb85c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #4cae4c;
}
/* --- Конец стилей для формы входа --- */

/* ... Другие стили вашего проекта ... */
