body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #7a7a7a;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #e1f5fe;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 320px;
    text-align: center;
}

h2 {
    color: #2c2c54;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 7px 0px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font size:1.2rem;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #228B22;
}

.error {
    color: red;
    margin-top: 10px;
}
