:root {
    --primary-color: #0d6efd;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #939393;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
}

h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none; /* Убран бордер */
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9; /* Легкий фон для визуального разделения */
    outline: none;
}
button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5; /* Добавь это */
    box-sizing: border-box; /* Добавь это */
    cursor: pointer;
}
input,
button {
    box-sizing: border-box;
    font-size: 16px;
}

button:hover {
    background-color: #3280f4;
}
.alert {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    color: white;
    font-size: 14px; /* уменьшенный шрифт */
}

.alert-green {
    background-color: #81c784; /* мягкий зелёный */
}

.alert-red {
    background-color: #f93a3a92; /* мягкий красный */
}

.alert-yellow {
    background-color: #ffb74d; /* мягкий жёлтый */
}
