body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.logo-img {
    height: 60px; 
}
h2 {
    text-align: center;
    color: #333;
    margin: 0; 
    padding-left: 50px;
    position: relative;
    bottom: 10px;
    display: inline-block;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-top: 1rem;
    color: #666;
}
input {
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}
button {
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #5B9BD5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #5B9BD5;
}
.error {
    color: red;
    margin-top: 0.5rem;
}
.logo a {
    display: inline-block; 
    text-decoration: none; 
}