/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lucida Sans", sans-serif;
}

/* Body styling */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #31393c;
  color: #fff;
}

/* Container styling */
.container {
  text-align: center;
  max-width: 500px;
  padding: 20px;
  background-color: #404b4f;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.checkbox-container {
  display: flex;
  align-items: center; /* Vertically aligns label and checkbox */
  margin-bottom: 4px; /* Space between rows */
}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px; /* Space between checkbox and label */
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
  color: #48A9A6;
}

p {
  margin-bottom: 1em;
  color: #f5f5f5;
  font-size: 1rem;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
}

input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1em;
}

input[type="text"] {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1em;
}

select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1em;
}

button {
  padding: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff6864;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #48a9a6;
}

label {
  text-align: left;
}

.title-label {
  margin-bottom: .5em;
}

textarea {
  font-family: Arial, sans-serif; /* Use the same font */
  font-size: 16px; /* Adjust font size */
  line-height: 1.5; /* Improve readability */
}

/* Logo styling */
.logo {
  max-width: 150px; /* Adjust as needed */
  height: auto;
  margin-bottom: 1em; /* Space between logo and heading */
}

/* Responsive styling */
@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}
