body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #533f3f;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #b09d9d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #337e37;
}

.error-message {
    color: red;
    margin-top: 20px;
    display: none; /* Initially hidden */
}