form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  /* max-width: 600px; */
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-section {
  padding: 80px 0px;
}

.form-step label {
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  width: 60%;
}

.form-step input, .form-step select, .form-step .radio-group {
  width: calc(100% - 160px); /* Subtract label width and margin */
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 5px;
}

.form-step .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button[disabled] {
  background: #ccc;
  cursor: not-allowed;
}

.form-step input:focus {
  border-color: #007bff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Background with opacity */
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
}

.modal-content button {
    background-color :red;
    /*width:50%;*/
}

.modal-header {
  /*font-size: 24px;*/
  /*font-weight: bold;*/
  /* margin-bottom: 15px; */
}

.modal-body h2{
  /*font-size: 18px;*/
  /* margin-bottom: 20px; */
  text-align:center;
}

.modal-footer {
  text-align: right;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form-step .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-step .checkbox-group label {
  width: 100%;
}
.form-step .checkbox-group input {
  width: 10%;
}

@media (max-width: 760px) {
  .radio-group {
      display:block;
  }
}


/*@media (max-width: 1200px) {*/
/*  .form-step .radio-group {*/
/*      width: calc(100% - 123px);*/
/*  }*/
/*}*/