@import url("https://fonts.googleapis.com/css2?family=Aoboshi+One&family=Poppins:wght@400;600&display=swap");

body {
  background: linear-gradient(to bottom right, #f8f9fa, #e3f2fd);
  font-family: "Poppins", sans-serif;
  margin: 0;
}

#header {
  font-family: "Aoboshi One", serif;
  background: linear-gradient(135deg, #6ee7b7 0%, #3b82f6 50%, #9333ea 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}

#header:hover {
  transform: scale(1.02);
}

.container > .border {
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.container > .border:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

select,
input {
  padding: 15px 20px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  border-radius: 12px;
  border: 1px solid #ced4da;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  width: 100%;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

select:focus,
input:focus {
  border-color: #5599e9;
  box-shadow: 0 0 5px rgba(85, 153, 233, 0.5);
  outline: none;
}

input::placeholder {
  color: #6c757d;
}

button {
  padding: 15px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background: #343a40;
  border: none;
  border-radius: 12px;
  color: white;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #212529;
  transform: scale(1.02);
}
