@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.futur-form {
  max-width: 720px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  color: #000000;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: fit-content;
}

.futur-form::before {
  content: "☀️";
  font-size: 80px;
  color: rgba(254, 87, 22, 0.05);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.futur-form h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  color: #10367A;
}

.futur-form p {
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 14px;
  color: #000000;
}

.field input,
.field select {
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background-color: rgba(211, 211, 211, 0.7);
  font-size: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  color: #000000;
}

.field input:focus,
.field select:focus {
  outline: none;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 2px #FE5716;
}

.radio-field {
  display: flex;
  align-items: center;
  gap: 20px;
}

.radio-field label {
  font-weight: normal;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #10367A, #FE5716);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.submit-btn:hover {
  transform: scale(1.02);
  background: linear-gradient(90deg, #FE5716, #10367A);
}

@media (max-width: 700px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}