@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
body{
	font-family: 'Roboto', sans-serif;
}
#overlay{   
    position: fixed;
    top: 0;
    z-index: 100000;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% { 
        transform: rotate(360deg); 
    }
}

a{text-decoration: none;}
.border{border: 1px solid #333;}
.pad0{padding: 0px;}
.clear{
	clear: both;
}
.error{
	color: red;
}
.logo{
	margin: 20px 0px;
	width: 60%;
}
.heading{
	font-size: 1.8em;
	font-weight: 400;
	text-align: center;
	margin: 20px 0px;
	display: block;
}
.login
{
	padding: 0px 30px;
}
.login label{
	font-weight: 500;
}
.login input, .login select{
	width: 100%;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding-left: 15px;
	font-size: 1em;
	box-shadow: none;
	background: #fcfcfc;
}
.login input[type=submit]
{
	width: 120px;
	background: #0a4684;
	border: none;
	padding: 0px;
	color: #FFF;
	font-weight: 500;
	margin: 10px 0px;
}
.wrapper{
  width: 100%;
  margin-bottom: 10px;
  justify-content: space-evenly;
}
.wrapper .option{
  background: #fafafa;
  display: inline-block;
  height: 38px;
  line-height: 38px;
  width: auto;
  text-align: center;
  justify-content: space-evenly;
  cursor: pointer;
  padding: 0 18px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.wrapper .option .dot{
  height: 0px;
  width: 0px;
  border-radius: 50%;
  position: relative;
}
.wrapper .option .dot::before{
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: none;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2{
  border-color: #377efc;
  background: #377efc;
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot{
  background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before{
  opacity: 1;
  transform: scale(1);
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span{
  color: #FFF;
}

.formotp input{
	width: 82px;
	height: 40px;
	border-radius: 2px;
	border: 1px solid #ddd;
	background: #fcfcfc;
	text-align: center;
}
.formotp input:focus{
	border-color: blue;
	outline: none;
}
.formotp input[type=number]::-webkit-inner-spin-button,
.formotp input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.formotp input[type=submit]{
	width: 100%;
	border: none;
	padding: 0px;
	margin: 20px 0px;
	background: #0a4684;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 500;
}
.resend{
	margin-bottom: 50px;
	text-align: center;
}
#resendOTP{
	display: none;
}