@charset "UTF-8";
/* CSS Document */

body {

    background: #eee

}



#regForm {

    background-color: #ffffff;

    margin: 0px auto;

    font-family: Raleway;

    padding: 40px;

    border-radius: 10px

}



#register{



  color: #6A1B9A;

}



h1 {

    text-align: center

}



input {

    padding: 10px;

    width: 100%;

    font-size: 17px;

    font-family: Raleway;

    border: 1px solid #aaaaaa;

    border-radius: 10px;

    -webkit-appearance: none;

}

select {

    padding: 10px;

    width: 100%;

    font-size: 17px;

    font-family: Raleway;

    border: 1px solid #aaaaaa;

    border-radius: 10px;

    -webkit-appearance: none;

}



textarea {

    padding: 10px;

    width: 100%;

    font-size: 17px;

    font-family: Raleway;

    border: 1px solid #aaaaaa;

    border-radius: 10px;

    -webkit-appearance: none;

}



.tab input:focus{



  border:1px solid #6a1b9a !important;

  outline: none;

}



input.invalid {

 

    border:1px solid #e03a0666;

}



.tab {

    display: none

}



button {

    background-color: #6A1B9A;

    color: #ffffff;

    border: none;

    border-radius: 50%;

    padding: 10px 20px;

    font-size: 17px;

    font-family: Raleway;

    cursor: pointer

}




button:hover {

    opacity: 0.8

}



button:focus{



  outline: none !important;

}
a {

    background-color: #6A1B9A;

    color: #ffffff;

    border: none;

    border-radius: 50%;

    padding: 10px 20px;

    font-size: 17px;

    font-family: Raleway;

    cursor: pointer
	

		
		

}




a:hover {

    opacity: 0.8

}



a:focus{



  outline: none !important;

}



#prevBtn {

    background-color: #bbbbbb

}





.all-steps{

      text-align: center;

    margin-top: 30px;

    margin-bottom: 30px;

    width: 100%;

    display: inline-flex;

    justify-content: center;

}



.step {

       height: 40px;

    width: 40px;

    margin: 0 2px;

    background-color: #bbbbbb;

    border: none;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 15px;

    color: #6a1b9a;

    opacity: 0.5;

}



.step.active {

    opacity: 1

}





.step.finish {

   color: #fff;

   background: #6a1b9a;

   opacity: 1;



}







.all-steps {

    text-align: center;

    margin-top: 30px;

    margin-bottom: 30px

}



.thanks-message {

    display: none

}


.container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  user-select: none;
}

/* Create a custom checkbox */
.checkmark {
  --clr: #0B6E4F;
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #ccc;
  border-radius: 50%;
  transition: 300ms;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--clr);
  border-radius: .5rem;
  animation: pulse 500ms ease-in-out;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid #E0E0E2;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 #0B6E4F90;
    rotate: 20deg;
  }

  50% {
    rotate: -20deg;
  }

  75% {
    box-shadow: 0 0 0 10px #0B6E4F60;
  }

  100% {
    box-shadow: 0 0 0 13px #0B6E4F30;
    rotate: 0;
  }
}
