body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.form-container {
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #333;
}

form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #e4aec6;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

button {
  margin-top: 20px;
  background-color: #e4aec6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #db92b2;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* spacing between checkbox and text */
  font-size: 16px;
  cursor: pointer;
}

.checkbox
{
  display: inline-flex;
  align-items: center;
  gap: 8px; /* spacing between checkbox and text */
  font-size: 16px;
  cursor: pointer;
  width: 20%; 
}