/* styles/login.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../images/login_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.login-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 28px;
    border-bottom: 2px solid #f1c40f;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

button {
    width: 100%;
    padding: 10px;
    background: #f1c40f;
    color: #333;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #d4ac0d;
}

.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
}

.success {
    color: #2ecc71;
    font-size: 14px;
    margin-top: 10px;
}

.logout-message {
    background: #28a745;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}
