body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-group input[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
.form-group input[type="submit"]:hover {
    background-color: #0056b3;
}
.links-container {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    font-size: 14px;
    margin-top: 10px;
}
.links-container a {
    color: #007BFF;
    text-decoration: none;
}
.links-container a:hover {
    text-decoration: underline;
}
.error-message {
    color: red;
    font-size: 14px;
    text-align: left;
    margin-top: -5px;
    margin-bottom: 10px;
}