* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
.typeform-steps {
  max-width: 500px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  min-width: 400px;
}
.step {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.step.active {
  transform: translateY(0);
  opacity: 1;
}
.step:first-child {
  transform: translateY(0);
  opacity: 1;
}
h2 {
  color: #333;
  margin-bottom: 20px;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.radio-group label {
  display: flex;
  align-items: center;
  padding: 10px 50px 10px 10px;
  border: 1px solid #0142ac;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  background: #e5ebf7;
}
.radio-group input[type="radio"] {
  display: none;
}
.radio-group span.custom_option_label {
  border: 1px solid #0142ac;
  padding: 5px 10px;
  margin-right: 10px;
  background-color: white;
}
.radio-group input[type="radio"]:checked + span {
  background-color: #0042ac;
  color: white;
  border: 1px solid #0042ac;
}
.radio-group input[type="radio"] + span + span {
  color: #0042ac;
}
.radio-group input[type="radio"]:checked + span + span {
  color: #0042ac;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
button {
  padding: 10px 20px;
  background-color: #0042ac;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  width: 100%;
  /* margin-top: auto; */
  font-weight: 700;
  font-size: 20px;
}
button:hover {
  background-color: #003399;
}

.custom_label {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}

.error-message {
  color: red;
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #f7e6e6;
}

.select-group {
  width: 100%;
}

.select-group {
  width: 100%;
}
.select-group select {
  border: none;
  box-shadow: rgba(1, 66, 172, 0.3) 0px 1px;
  background: transparent;
  font-size: 24px;
  text-align: middle;
  border-radius: 0px;
  outline: none;
}

.input-group {
  width: 100%;
}

.input-group input {
  border: none;
  box-shadow: rgba(1, 66, 172, 0.3) 0px 1px;
  background: transparent;
  font-size: 24px;
  text-align: middle;
  border-radius: 0px;
  outline: none;
}
