body {
    font-family: Arial, sans-serif;
    background-color: #181818;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #e0e0e0;
}

.login-container {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 300px;
    text-align: center;
}

h1 {
    color: #56b3b0;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #333;
    color: #e0e0e0;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #56b3b0;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #4a9a96;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.form-container {
    display: flex;
    flex-direction: column;
}