body {
  background-color: #2b3044;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.span-gradient-text {
  background: linear-gradient(90deg, #2e8be0 0%, #fe8801 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-orange {
  background-color: #fe8801;
  color: white;
  transition: all 0.2s ease-in-out;
}
.btn-orange:hover {
  background-color: #fe8801;
  color: white;
  transform: scale(1.1);
  box-shadow:
    0 0 20px rgba(254, 136, 1, 0.6),
    0 0 40px rgba(254, 136, 1, 0.4);
}

.form-control::placeholder {
  color: #495057;
  opacity: 0.7;
}
