/* body {
    background-color: lightblue;
}
h1{
    color: white;
    text-align: center;
}
p{
    font-family: verdana;
    font-size: 20px;
}
label{
    border-style: solid;
    border-width: 2px;
    height: 200px;
    width: 50%;
    background-color: powderblue;
  }
.form-container {
    position: relative;
    height: 100vh; /* Full viewport height */
/* }

form {
    position: absolute;
    top: 50%; /* Move to the middle */
    /* left: 70%; /* Move to the middle */
    /* transform: translate(-50%, -50%); Adjust position back to center */
    /* width: 50%; Adjust width as needed */
/* } */ 

body {
    background-color: lightblue;
    font-family: Arial, sans-serif; /* Set a consistent font family */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

h1 {
    color: white;
    text-align: center;
    margin-top: 20px; /* Add margin for spacing */
}

p {
    font-family: Verdana, sans-serif;
    font-size: 20px;
    text-align: center; /* Center paragraph text */
}

label {
    display: block; /* Make label block-level for better layout */
    border-style: solid;
    border-width: 2px;
    height: auto; /* Allow height to adjust based on content */
    width: 100%; /* Full width of its container */
    max-width: 400px; /* Limit maximum width for larger screens */
    background-color: powderblue;
    padding: 10px; /* Add padding for better spacing */
    margin-bottom: 10px; /* Space between labels */
}

.form-container {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
}

form {
    background-color: white; /* Set a background color for contrast */
    border-radius: 8px; /* Rounded corners for form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
    padding: 20px; /* Add padding inside the form */
    width: 90%; /* Responsive width */
    max-width: 500px; /* Limit maximum width */
}

input[type="text"],
select {
    width: calc(100% - 22px); /* Full width minus padding/border */
    padding: 10px; /* Add padding for input fields */
    margin-bottom: 15px; /* Space between inputs */
    border-radius: 4px; /* Rounded corners for inputs */
    border: 1px solid #ccc; /* Light border for inputs */
}

input[type="button"] {
    background-color: #007BFF; /* Bootstrap primary color */
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer; /* Change cursor on hover */
}

input[type="button"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
}