body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
}

form {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

form label {
    font-size: 20px;
    font-weight: bold;
    color: black;
    font-family: 'Arial', sans-serif;
    margin-bottom: 5px;
    display: block;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #0056b3;
}

form p {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

ul.errorlist {
    list-style: none;
    padding: 0;
    margin: 0 10px 10px 10px;
    color: red;
    text-align: justify;
    font-size: 12px;
}

ul.errorlist li {
    margin-bottom: 5px;
}
