 /* Reset some default styles */
body, h2, form {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px;
}

h2 {
    color: #009688;
}

/* Login form styling */
form {
    max-width: 300px;
    margin: 20px auto;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    background-color: #009688;
    color: #fff;
    cursor: pointer;
}


/* Error message styling */
#error-message {
    color: red;
    margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 600px) {
    form {
        max-width: 100%;
    }
}
