/* 🔥 Загальний стиль */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* 🔥 Контейнер логіна */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 🔥 Форма */
.login-box {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(255, 60, 0, 0.4);
    text-align: center;
    width: 350px;
}

.login-box h2 {
    color: #ff3c00;
    margin-bottom: 20px;
}

/* 🔥 Групи введення */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #b3b3b3;
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    background: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.input-group input:focus {
    border-color: #ff3c00;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 60, 0, 0.7);
}

/* 🔥 Чекбокс */
.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 5px;
}

/* 🔥 Кнопки */
.login-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, #ff3c00, #e03500);
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #e03500, #c02a00);
    box-shadow: 0px 0px 10px rgba(255, 60, 0, 0.8);
    transform: translateY(-3px);
}

/* 🔥 Забули пароль */
.forgot-password {
    font-size: 14px;
    color: #ff3c00;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* 🔥 Стилі помилок */
.error {
    color: #ff4c4c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.session-status {
    background: #ff3c00;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}
