body{

}
.con-sec-form {
  width: 100%;
  min-height: 800px;
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
  flex-wrap: wrap;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.con-sec-form > div {
  width: 30%;
  min-width: 400px;
  height: 680px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
.con-sec-form h1 {
  width: 100%;
  font-size: clamp(18px, 7vw, 32px);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  color: #ffffffbb;
}
.con-sec-form .hand {
  width: 60px;
  height: 60px;
}
.con-sec-form h1 span:last-child {
  color: #fff;
  font-weight: bold;
}
.con-sec-form p {
  color: #ffffffbb;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 400;
}
.con-sec-form .contact-info {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  height: 200px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.contact-info span:first-child {
  color: #fff;
  margin-right: 10px;
}

form {
  width: 60%;
  height: 700px;
 background: #fff; 

    border: 1px solid rgba(255, 255, 255, 0.4);border-radius: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow-x: hidden;
  padding: 0 40px;
  min-width: 400px;
}
.progress {
  width: 100%;
  height: 15px;
  background-color: #d9d9d9;
  border-radius: 12px;
}
.progress span {
  height: 100%;
  width: 33%;
  background: #1D92B2;
  border-radius: 12px;
  display: inline-block;
  transition: width 300ms linear;
}
.Info,
.Event,
.Preference {
  width: 100%;
  min-height: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: transform 2000ms;
}
form input,
form select,
date-label {
  width: 45%;
  min-width: 180px;
  margin-right: 10px;
  height: 50px;
  border: 1px solid #a9a9a9;
  color: #A6A6A6;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  outline: #24CEFF;
  padding-left: 3%;
  background-color: #F8F8F8;
}

form select {
  appearance: none;
  -moz-appearance: none;
  color: #000;
  font-weight: 700;
}
select option {
  color: #a9a9a9;
}
form textarea {
  width: 100%;
  height: 130px;
  resize: none;
  border: 1px solid #a9a9a9;
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  outline: #24CEFF;
  padding: 3%;
}
form h2 {
  width: 100%;
  font-size: clamp(18px, 7vw, 32px);
  font-weight: 400;
  color:#1D92B2;
}
#phone,
#company,
#email {
  width: 100%;
}
.contact-btns {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
form .contact-btns button,
#submit-con {
  max-width: 132px;
  min-width: 80px;
  width: 20%;
  height: 72px;
  background-color: #1D92B2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 600;
  cursor: pointer;
}

form .contact-btns #back-con {
  background-color: #aaaaaa;
}
#submit-con {
  display: none;
}
.Preference > div:first-child {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  min-height: 60px;
  flex-wrap: wrap;
}
.Preference > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 250px;
}
.Preference label {
  width: 140px;
  height: 44px;
}

.Preference span {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 20px;
  background-color: #ebebeb;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}
.contact-options input[type="radio"]:checked + span {
  background-color: #1D92B2;
  color: white;
  border-color: #1D92B2;
}

.Preference h3 {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
.Preference label input {
  display: none;
}
.step {
  transform: translateX(110%);
}
.step.current {
  display: flex;
  animation: current 400ms linear forwards;
}
.step.prev {
  display: none;
  animation: prev 400ms linear forwards;
}
.con-image{
  width: 100%;
  height: 400px;
}
@keyframes current {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes prev {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}
@media (max-width: 1050px) {
  .con-sec-form > div,
  form {
    width: 100%;
    min-width: 100%;
            margin: 20px 0;
  }
  form {
    min-height: 900px;
  }
}
@media (max-width: 555px) {
  form input,
  form select {
    width: 100%;
    padding-left: 10%;
    margin: 20px 0;
  }
  .con-sec-form{
          padding: 10px;
  }
  form {
    
    background: #1B5079;
}
form input, form select, date-label ,form textarea{
        background-color: #195F94;
        border:none;
        color:#fff;
}
form h2 ,input::placeholder ,form textarea::placeholder{
            color:#fff;

}
}
