.title {
  color: #ff80ab; /* Light pink */
  text-align: center;
  margin: 20px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  margin: 0 auto; /* Add this line */
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #ff80ab; /* Light pink */
  outline: none;
}

input[type="submit"] {
  background-color: #ff80ab; /* Light pink */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #ff6699; /* Darker pink */
}

.logo {
  text-align: center;
  margin: 0 auto; /* Add this line */
  margin-top: 20px;
}

.logo img {
  width: 350px;
  height: auto;
}

/* Additional styles for responsiveness */
@media screen and (max-width: 768px) {
  .form-wrapper {
    width: 100%;
  }
}
