/* Apply styles to the login form container */
body {
    font-family: Arial, sans-serif;
    background-color: #0091ea;
    text-align: center;
    padding: 40px;
    background-image: linear-gradient(135deg, #0091ea 0%, #0071c5 100%);
}

/* Style the login form header */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Style error messages */
ul.messages {
    list-style: none;
    padding: 0;
    color: red;
    margin-bottom: 20px;
}

ul.messages li {
    margin: 5px 0;
    color: #ff0000;
}

/* Style form labels and input fields */
form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Style the login button */
button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Center the form on the page */
form {
    margin: 0 auto;
    max-width: 250px;
}
