/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
    height: 100vh; /* Ensure the body takes the full height of the viewport */
}

h2 {
    color: #007bff;
    margin-top: 0; /* Remove default margin from the top */
}

form {
    margin-top: 20px;
    width: 60%; /* Adjust the width as needed */
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.9); /* Set background color with transparency */
    border: 1px solid #ccc; /* Add a border for clarity */

}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    width: 150px;
    
}
