
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap');

/*========== Custom Scroll ====================*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: 0 0 5px transparent; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #583c9a; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #5d2ece; 
}

*{
	margin: 0;
	padding: 0;
}
body{
	margin: 0;
	padding: 0;
	font-family: 'Rubik', sans-serif;
}
h1, h2,h3,h4,h5,h6{
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
}
.login{
	width: 100%;
	background: #583c9a;
	padding: 100px 0;
}
.login p{
	text-align: center;
	padding: 20px 0;
	font-size: 13px;
	color: #f1f1f1;
    opacity: 0.4;
}
.login-content{
	background: #fff;
	width: 400px;
	padding: 40px;
	margin: 0px auto;
	border-radius: 12px;
	position: relative;
}

.bordertest {
    width: 400px;
    height: 14px;
    background: linear-gradient(to right, #f93f60, #76c063, #f9c64c, #5678fe, #a463e7);
    margin: 0px auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 94px;
    position: absolute;
    left: 0;
    right: 0;
}
.logo {
	text-align: center;
    width: 200px;
    max-height: 200px;
    margin: 0px auto;
}
.logo img{
	max-width: 100%;
}
.login-content{
	text-align: center;
}
.login-form{
	text-align: left;
	padding-top: 30px;
}
.login-form label{
	color: #414143;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.login-form input{
	height: 50px;
	border: 2px solid #dadada;
}
.login-form input:focus{
	box-shadow: none;
}
.login-form input::placeholder{
	color: #ccc;
}

.login-form .otp-bton{
	width: 100%;
    padding: 18px 0;
    background: #583c9a;
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
}
.login-form a.otp-bton{
	color: #fff;
}
.login-form a:hover.otp-bton{
	color: #fff;
}
.login-form .otp-bton:hover{
	color: #fff;
}
.login-link{
	padding: 15px 0;
}
.login-link a{
	font-weight: 500;
	font-size: 14px;
}
.f-left{
	float: left;
}
.f-right{
	float: right;
}

.otp_wrapper .login_method {
	width: 100%;
	display: grid;
	grid-template-columns: 50% 50%;
	margin-bottom: 20px;
}

/*=== Modal Close Button ==========*/
.close {
    background-image: url(../images/icons/close.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0 !important;
    opacity: 1;
}

.modal-title {
	font-size: 18px;
	font-weight: 400;
}

/*=========== custom radio button ===================*/
input[name='otp'] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  appearance: none !important;
  outline: none;
  position: absolute;
    opacity: 0;
    width: 0;
  height: 0;
}
input[name='otp']:after {
  font-family: 'FontAwesome';
  display: inline-block;
  text-align: center;
  font-size: 80px;
  content: '';
  padding: 20px 20px;
  color: rgba(0, 0, 0, 0.4);
  transition: box-shadow 1s, color 1s;
  width: 50px;
  height: 50px;
  cursor: pointer;

} 

.email_otp {
	text-align: center;
}

/* .email_otp input[name='otp']:after {
	background-image: url(../images/icons/mail-icon.png);
    background-position: center;
    background-size: cover;
} */

.mobile_otp {
	text-align: center;
}

/* .mobile_otp input[name='otp']:after {
	background-image: url(../images/icons/mobile-icon.png);
    background-position: center;
    background-size: cover;
} */

.email_otp .mail, .mobile_otp .sms {
	width: 100px;
    height: 100px;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #fff;
}

.otp_form #otpNo {
	height: 50px;
	border: 2px solid #dadada;
}

.email_otp label, .mobile_otp label {
	display: block;
}

.auth_btn {
	text-align: center;
}

.auth_btn .btn {
	padding: 0.7rem 1.75rem;
}

.auth_btn .btn-primary {
	background-color: #583c9a;
	border-color: #583c9a;
}

/* .auth_btn .btn-primary:hover {
	background-color: #583c9a !important;
	border-color: #583c9a;
}

.auth_btn .btn-primary:active {
	background-color: #583c9a !important;
	border-color: #583c9a;
} */

/*========== otp Box ==============*/

@media (min-width: 576px) {
	.modal-dialog {
	    max-width: 400px;
	    margin: 1.75rem auto;
	}
}

.usr_authenticate {
	width: 100%;
	display: grid;
	grid-template-columns: 40% 40%;
	justify-content: space-between;
}

.user_auth .otp_send {
	text-align: center;
	color: green;
	font-size: 14px;
	font-weight: 500;
}


@media only screen and (max-width: 430px) {
	.login-content {
		width: 270px;
	}
	.bordertest {
    	width: 270px;
	}
}

@media only screen and (max-width: 400px) {
	.login-link a{
		font-size: 12px;
	}
}