@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap');

.access_form{
	padding: 50px 0;

	width: 100%;
	height: 100%;
	font-size: 18px;
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	color: #222;
}
.container{
	max-width: 1230px;
	width: 100%;
}

h1{
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
}

.header{
	padding: 20px 0px;
	background: #ecf0f4;
	
}
.header h2{
	font-size: 32px;
	font-weight: bold;
}
.header h2 span{
	color: #ed1b23;
}
#description{
	font-size: 24px;
}

.form-wrap{
	background: rgba(255,255,255,1);
	width: 100%;
	max-width: 850px;

	margin: 0 auto;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
/* .form-wrap:before{
	content: "";
	width: 90%;
	height: calc(100% + 60px);
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	top: -30px;
	background: #ed1b23;
	z-index: -1;
	opacity: 0.8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
} */
.form-group{
	margin-bottom: 25px;
}
.form-group > label{
	display: block;
	font-size: 18px;	
	color: #000;
}
.custom-control-label{
	color: #000;
	font-size: 16px;
}
.form-control{
	height: 50px;
	background: #ecf0f4;
	border-color: transparent;
	padding: 0 15px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.form-control:focus{
	border-color: #ed1b23;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
textarea.form-control{
	height: 160px;
	padding-top: 15px;
	resize: none;
}

.btn{
	padding: .657rem .75rem;
	font-size: 18px;
	letter-spacing: 0.050em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #ed1b23;
  border-color: #ed1b23;
}

.btn-primary:hover {
  color: #ed1b23;
  background-color: #ffffff;
  border-color: #ed1b23;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:focus, .btn-primary.focus {
  color: #ed1b23;
  background-color: #ffffff;
  border-color: #ed1b23;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #ed1b23;
  background-color: #ffffff;
  border-color: #ed1b23;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
	
span.error {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    right: -15px;
    z-index: 2;
    height: 25px;
    line-height: 1;
    background-color: #e34f4f;
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 6px 8px;
}
span.error:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent #e34f4f;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -6px;
    left: 20%;
}
.form-group {
    position: relative;
    margin-bottom: 30px;
}
.floating-label.filled label {
    opacity: 1;
    visibility: visible;
    top: -10px;
    padding: 4px;
    background: #FFF;
}
.floating-label label {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: -11px;
    left: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    border-top-left-radius: 3px;
    transition: all 0.3s ease-in-out;
    left: 13px;
    background-color: transparent;
    padding: 16px 4px;
    z-index: 1;
}
#sendOtpButton{
	background-color: #000;
	border: 1px solid #000;
}
.footer-class h6{
	margin: 0px;
	text-align: center;
}
.footer-class{
	padding: 8px 0px;
	background: #ecf0f4;
}



@media only screen and (max-width: 767px) {
	.form-wrap{
		padding: 25px;
	}
	h1{
		font-size: 24px;
	}
	.otp-sec #mobile_no, .verify-otp #otpInput{
		width: 100%;
		margin-bottom: 10px;
	}
	
  }
  @media only screen and (min-width: 768px) {
	.otp-sec,.verify-otp{
		display: flex;
		align-items: center;
		column-gap: 10px;
		justify-content: space-between;
	}
	.otp-sec #mobile_no,.verify-otp #otpInput{
		width: 75%;
	}
	.otp-sec #sendOtpButton,.verify-otp #verifyOtpButton{
		width: 25%;
	}
	h1{
		font-size: 36px;
	}
	.form-wrap{
		padding: 50px;
	}
  }