* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #010758, #490d61);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 40px 0;
}

.hero h1 {
  font-size: 45px;
  font-weight: 500;
  margin-top: -50px;
  margin-bottom: 50px;
}

.hero h1 span {
  color: #ff2963;
}

textarea {
  width: 600px;
  max-width: 90vw;
  height: 250px;
  background: #403d84;
  color: #fff;
  font-size: 15px;
  border: 0;
  outline: 0;
  padding: 20px;
  border-radius: 10px;
  resize: none;
  margin-bottom: 30px;
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.15);
  transition: box-shadow 0.2s;
}
textarea:focus {
  box-shadow: 0 6px 32px 0 rgba(255, 41, 99, 0.15);
}

textarea::placeholder {
  font-size: 16px;
  color: #ddd;
}
.row {
  width: 600px;
  max-width: 90vw;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

button {
  background: #ff2963;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border-radius: 35px;
  border: 0;
  outline: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(255, 41, 99, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
}
button:hover,
button:focus {
  background: #ff4b7d;
  box-shadow: 0 4px 16px 0 rgba(255, 41, 99, 0.25);
}

button img {
  width: 16px;
  margin-right: 10px;
}

select {
  flex: 1;
  color: #fff;
  background: #403d84;
  height: 50px;
  border: 0;
  outline: 0;
  padding: 0 20px;
  border-radius: 35px;
  appearance: none;
  background-image: url(assets/dropdown.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position-x: calc(100% - 20px);
  background-position-y: 20px;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.1);
  transition: box-shadow 0.2s, background 0.2s;
}
select:hover,
select:focus {
  background: #574fcf;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.18);
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  textarea,
  .row {
    width: 95vw;
    min-width: 0;
    max-width: 98vw;
  }
  textarea {
    height: 150px;
    font-size: 14px;
    padding: 12px;
  }
  .row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
  }
  button,
  select {
    width: 100%;
    font-size: 15px;
    padding: 10px 0;
    min-width: 0;
  }
}

.footer {
  width: 100%;
  text-align: center;
  padding: 18px 0 10px 0;
  background: rgba(20, 15, 60, 0.7);
  color: #fff;
  font-size: 15px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  letter-spacing: 0.5px;
}
.footer a {
  color: #ff2963;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
