/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #2C3E50;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ecf0f1;
}

/* Container for the login box */
.login-container {
    background-color: #34495E;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border: 3px solid #2980B9;
}

/* Heading Styles */
h2 {
    text-align: center;
    color: #2980B9;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #7f8c8d;
    background-color: #ecf0f1;
    color: #2c3e50;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #2980B9;
}

button {
    background-color: #2980B9;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3498db;
}

/* Error message styles */
.error-message {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}
