@charset "UTF-8";
/* CSS Document */
.clearfix:before, .clearfix:after{content: ""; display: table}
.clearfix:after{clear: both;}
.clearfix{zoom: 1;}

.left{float: left;}
.right{float: right;}

html{
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

img{max-width: 100%;}
body{background: #f8f9fa;}





/* Main CSS */
.main-wrapper{
	padding: 0 20px;
}
.main-wrapper .logo{
	width: 50%;
	margin: 0 auto;
	margin-top: 20px;
}
.main-wrapper .logo img{display: block;}

.main-heading{
	font: 24px/30px "Noto Sans Ethiopic", sans-serif;
	font-weight: 700;
	color: #034b93;
	margin: 50px 0;
	text-align: center;
}


/* Check Box */
.primary-check-holder{position: relative;}
.primary-check-holder label{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font: 14px/22px "Noto Sans Ethiopic", sans-serif;
	font-weight: 400;
	color: #000000;
}
.primary-check-holder .primary-check{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
	opacity: 0;
	margin: 0;
	z-index: 111;
}
.primary-check-holder label:before{
	content: '';
	display: block;
	min-width: 16px;
	width: 16px;
	height: 16px;
	background: #FFFFFF;
	border: 1px solid rgba(4, 30, 66, 0.4);
	text-align: center;
	margin-right: 12px;
	cursor: pointer;
	position: relative;
    top: 2px;
	transition: all .3s;
}
.primary-check-holder label:after{
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 16px;
	height: 16px;
	display: block;
	background: #034b93 url("../images/checkbox.svg") no-repeat;
	background-size: 16px 16px;
	background-position: center center;
	opacity: 0;
	cursor: pointer;
	transition: all .3s;
}
.primary-check-holder .primary-check:checked ~ label:before {
	border-color: #034b93;
	transition: all .3s;
}
.primary-check-holder .primary-check:checked ~ label:after {
	opacity: 1;
	transition: all .3s;
}
/* END Check Box */


.ref-btn{margin-top: 20px;}
.primary-button{
	display: block;
	width: 100%;
	border: none;
	outline: none;
	padding: 10px;
	font: 14px/22px "Noto Sans Ethiopic", sans-serif;
	font-weight: 700;
	color: #ffffff;
	background: #0176ED;
	background: linear-gradient(90deg, rgba(1, 118, 237, 1) 0%, rgba(1, 85, 172, 1) 100%);
	border-radius: 50px;
}
.primary-button:disabled{
	background: #cccccc;
    box-shadow: none;
	cursor: not-allowed;
}

.otp-inputs{
	display: flex;
	justify-content: center;
}
.otp-inputs input{
	display: block;
	width: 50px;
	padding: 5px;
	flex: 1;
	margin-right: 5px;
	text-align: center;
	font: 26px/30px "Noto Sans Ethiopic", sans-serif;
	font-weight: 700;
	background: #f0f0f0;
	border: 1px solid #dbdbdb;
	border-radius: 5px;
}

.attempts-time{
	display: flex;
	margin-top: 10px;
}
.attempts-time .attempts-text{
	font: 14px/20px "Noto Sans Ethiopic", sans-serif;
	font-weight: 400;
	color: #000000;
}
.attempts-time .time-left{
	flex: 1;
	font: 16px/20px "Noto Sans Ethiopic", sans-serif;
	font-weight: 700;
	color: #034b93;
	text-align: right;
}

.receive-holder{
	text-align: center;
	margin-top: 100px;
}
.receive-holder .ref-code{
	font: 16px/20px "Noto Sans Ethiopic", sans-serif;
	font-weight: 400;
	color: #000000;
	margin-bottom: 5px;
}
.receive-holder .resend-code{
	display: inline-block;
	text-decoration: underline;
	font: 16px/20px "Noto Sans Ethiopic", sans-serif;
	font-weight: 400;
	color: #034b93;
}


.overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.50;
	z-index: 99;
}
#incorrect-ref{
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999;
	background: #ffffff;
	border-radius: 10px;
	width: 80%;
	transform: translate(-50%, -50%);
	padding: 30px 10px;
}
#incorrect-ref .incorrect-text{
	text-align: center;
	font: 16px/22px "Noto Sans Ethiopic", sans-serif;
	font-weight: 400;
	color: #000000;
	margin-bottom: 40px;
}
.secondary-button{
	display: block;
	width: 100%;
	border: none;
	outline: none;
	padding: 10px;
	font: 14px/22px "Noto Sans Ethiopic", sans-serif;
	font-weight: 700;
	color: #ffffff;
	background: #0176ED;
	background: linear-gradient(90deg, rgba(1, 118, 237, 1) 0%, rgba(1, 85, 172, 1) 100%);
	border-radius: 5px;
	text-align: center;
}
#incorrect-ref .secondary-button{
	width: 150px;
	margin: 0 auto;
	box-shadow: 0 3px 0 #8bafd1;
}
#incorrect-ref .icon-holder{margin-bottom: 20px;}
#incorrect-ref .icon-holder svg{
	display: block;
	margin: 0 auto;
}
/* END Main CSS */