* {
  box-sizing: border-box;
}

body {
  background-color: #f9f6f1;
}

#regForm {
  background-color: #ffffff;
  margin: 15px auto;
  padding: 40px;
  width: 60%;
  min-width: 300px;
  box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 15%);
  -o-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}
h1{
  color: #333;
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  padding: 8px 0 10px;
}
h3{
  font-size: 25px;
  color: #333;
  font-weight: 900;
  margin: 0;
  padding-bottom: 18px;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

p{
  color: #666;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.line{
  width: 100px;
  height:5px;
  background-color: #ddd;
  margin: 10px auto;
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

.btn-next {
  float: right;
  width: 200px;
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-image: -moz-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
  background-image: -webkit-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
  background-image: -ms-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn-next:hover {
  color: #f3f3f3;
  background-image: -moz-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
}

.btn-prev{
  width: 200px;
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-image: -moz-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(55,41,245) 0%, rgb(48,44,224) 50%, rgb(27,201,215) 100%);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn-prev:hover{
  color: #f3f3f3;
  background-image: -moz-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
  background-image: -webkit-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
  background-image: -ms-linear-gradient( 136deg, rgb(85, 51, 255) 0%, rgb(78, 74, 254) 50%, rgb(37, 220, 245) 100%);
}


/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}

/* form .form-control{
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #ccc;
}
form .form-select{
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #ccc;
} */

form .form-select:focus{
  background-color: transparent;
  box-shadow: none;
}

input[type=text]:focus {
  background-color: transparent;
  box-shadow: none;
}

input[type=email]:focus {
  background-color: transparent;
  box-shadow: none;
}

input[type=number]:focus {
  background-color: transparent;
  box-shadow: none;
}

.form-check-input:checked{
  background-color: #1e752d;
  border-color: #1e752d;
}


footer {
  margin-bottom: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #efefef;
  text-align: center;
}

.icon i{
  font-size: 45px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #5cb85c;
}

.tab .form-floating input::-webkit-outer-spin-button,
.tab .form-floating input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.tab .form-floating input[type=number] {
  -moz-appearance: textfield;
}
@media only screen and (max-width: 600px) {
  #regForm {
    padding: 18px !important;
    width: 89% !important;
    margin: 22px !important;
  }
  .guise{
    font-size: 26px !important;
  }
}