body {
  font-family: Arial, sans-serif;
}

.tfp-form-container {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  margin: 50px auto;
  backdrop-filter: blur(8px);
  color: white;
}

.tfp-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.tfp-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tfp-form-container input,
.tfp-form-container select {
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
}

.tfp-form-container input::placeholder {
  color: #eee;
}

.tfp-form-container button {
  width: 100%;
  padding: 12px;
  border: 1px solid white;
  background: transparent;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tfp-form-container button:hover {
  background: white;
  color: black;
}
