.admin_icon {
	color: #ffffff;
	font-size: 40px;
	font-weight: 100!important;
}

.admin_icon_box {
	width: 110px;
	height: 110px;
	line-height: 120px;
	border: 3px solid #ffffff;
	border-radius: 100%;
}

.admin_icon_box:before , .admin_icon_box:after {
	content: '';
	width: 150px;
	height: 3px;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.admin_icon_box:before{
	right: 110px;
}

.admin_icon_box:after{
	left: 110px;
}

.icon_box{
	position: relative;
	margin-bottom: 30px;
}

.login_box {
	position: relative;
	width: 30%;
}

.inputWithIcon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}


.input_box {
	width: 100%;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 0 4px 4px 0;
	margin: 8px 0;
	outline: none;
	padding: 6px;
	box-sizing: border-box;
	transition: 0.3s;
}

.inputWithIcon.inputIconBg i {
	background-color: transparent;
	color: #fff;
	padding: 9px 4px;
	border-radius: 4px 0 0 4px;
	border: 2px solid #ffffff;
}
.inputWithIcon i {
	padding: 9px 8px;
	color: #aaa;
	transition: 0.3s;
}

.input_icon {
	height: 40px;
	width: 55px;
	font-size: 18px;
}

.submit_btn {
	width: 100%;
	height: 40px;
	outline: none;
	border-radius: 4px;
	border: 0;
	background-color: #f4c242;
	margin-top: 30px;
	color: #ffffff;
}

.remeber_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	border-bottom: 2px solid #ffffff;
}

/*checkbox*/
/* Create a custom checkbox */

.chkbox_container{
	position: relative;
	padding-left: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: 2px solid #ffffff;
	border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.remeber_box input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.remeber_box .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border:solid #e78e13;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.remeber_box label {
	color: #ffffff;
}

.forgot_link {
	color: #ffffff;
	font-style: italic;
}

.forgot_link:hover,.forgot_link:focus{
	color:#ffffff;
	text-decoration: underline;
}

@media only screen and (max-width: 768px){
	.admin_icon {
		font-size: 25px;
	}

	.admin_icon_box {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}

	.admin_icon_box:before {
		right: 80px;
	}

	.admin_icon_box:after {
		left: 80px;
	}

	.admin_icon_box:before, .admin_icon_box:after{
		width: 90px;
	}

	.login_box {
		width: 75%;
	}
}