.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.input-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding-left: 15px;
  color: white;
}

.input-wrapper i {
  margin-right: 10px;
}

.input-wrapper .form-control {
  background-color: transparent;
  border: none;
  border-radius: 30px;
  color: white;
  padding-left: 10px;
  height: 45px;
}

.input-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-wrapper .form-control:focus {
  border-color: transparent;
  box-shadow: none;
}

.btn-primary {
  background-color: white;
  color: #c74c14;
  border: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #f46b45;
  color: white;
}

.btn-primary:focus {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

a.text-white:hover {
  color: #f1c40f;
}

