* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Google Sans', Arial, sans-serif;
}

body {
  background-color: #d2ecf9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background-color: rgb(255, 255, 255);
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  padding: 20px 30px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* HEADER */
.form-header {
  background-color: #0046a0;
  color: white;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 15px;
}

.form-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.form-header p {
  font-size: 18px;
  color: #c9dafc;
}

/* PROGRESS BAR */
.progress-bar {
  background-color: #e0e0e0;
  height: 6px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}

.progress {
  background-color: #004fb7;
  height: 100%;
  width: 33%;
  transition: width 0.3s ease-in-out;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

/* INPUT */
.form-group {
  background-color: white;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

label {
  font-size: 15px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 8px 0;
  font-size: 15px;
  outline: none;
  background-color: transparent;
}

input:focus {
  border-bottom: 2px solid #1a73e8;
}

/* RADIO */
.radio-group .radio-options {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.radio-group label {
  font-size: 15px;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
}

/* BUTTONS */
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  background-color: #04408f;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: 0.2s;
}

button:hover {
  background-color: #006dfc;
}

/* FORM STEP */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
  }

  button {
    width: 100%;
  }
}
