.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

h2 {
    text-align: left;
    color: #333;
    margin-bottom: 2rem;
    font-size: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: bold;
}

input {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #aaaaaa;
    border-radius: 4px;
}

button {
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #0056b3;
}

.username-div,
.password-div {
    display: flex;
    flex-direction: column;
}