body,
html {
  height: 100%;
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #f0f0f0; /* Very light gray background */
  color: #202020; /* Almost black for great contrast */
}

h1 {
  margin-top: 50px;
  text-align: center;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: #ffffff; /* Pure white background */
  padding: 20px;
  border: 2px solid #202020; /* Solid, dark border for crisp edges */
  border-radius: 10px; /* Slightly rounded corners for a soft look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

input,
button,
select,
textarea {
  padding: 10px;
  margin: 5px;
  border-radius: 10px; /* Consistent rounded edges */
  border: 2px solid #202020;
  background: transparent;
  color: #202020; /* Matching text color */
  outline: none;
  width: 48%; /* Ensures proper alignment and spacing */
}

textarea {
  width: 96%;
  height: 200px; /* Large text area */
}

button {
  background-color: #202020; /* Dark buttons for a stark, stylish look */
  color: #ffffff; /* White text for contrast */
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s, transform 0.2s;
  width: auto; /* Auto width for flexibility */
  display: block; /* Block display to fill width */
  margin: 20px auto; /* Center button horizontally */
}

button:hover {
  background-color: #404040; /* Slightly lighter black on hover */
  transform: scale(1.05); /* Subtle growth on hover */
}

select {
  width: 40%; /* Adjust width for dropdown */
}

#email {
  width: 40%; /* Adjust width for email input to fit in the row */
}
