/* Basic styling for the login page */

h2 {
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
}

form {
    max-width: 400px;
    margin: 0 auto; /* Center the form horizontally */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
}

/* Error message styling */
.error-message {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}

.success-msg {
    color: green;
    text-align: center;
    margin-bottom: 10px;
}

