/* Reset some basic elements */
body, h2, form, input, button {
    margin: 10px;
    padding: 10px;
    border: 0;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Center the login container */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f8ff;
}

/* Style the login container */
.login-container {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style the heading */
.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Style input groups */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Style labels */
.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

/* Style inputs */
.input-group input {
    width: 100%;
    padding: 10px;
    border: 5px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
}

/* Style the login button */
button {
    width: 80%;
    padding: 10px;
    background-color: #4682b4;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Change button color on hover */
button:hover {
    background-color: #5a9bd3;
}
