.col-no-gap{
    padding:0px;
    margin:0px;
}

.step_form_cust{
    width:95%;
    margin:0px auto;
}

#regForm {
  /*background-color: #ffffff;*/
  margin: 10px auto;
  padding: 20px;
  width:95%;
  /*border:1px solid#ccc;*/
}

h1 {
  text-align: center;  
}
label{
    font-size:10px;
    padding:5px 3px;
}
input {
    width:100%;
	height:40px;
	padding:8px 10px;
	margin:0px auto;
	background:#fff;
	font-size:12px;
}
input[type=radio]{
    float:left !important;
}

.inputR {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.inputR input {
    width: 26px;
    position: relative;
    top: -6px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
  display:none;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-image: linear-gradient(
150deg
, #0c69ce 0%, #2f82d66e 90%);
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  display:inline-block;
  border-radius:20px;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bedbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 30px;
  width:30%;
  margin: 0 2px;
  background-image: linear-gradient(150deg, #0c69ce 0%, #2f82d66e 90%);
  border-radius: 50px;  
  display: inline-block;
  opacity: 1;
  line-height:32px;
  color:#fff;
  font-size:14px;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #284f30;
}

.other-text{
    text-align:left;
    font-size:14px;
    padding:5px 15px;
}