*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus{
	outline: none;
}

body{
	background-color: rgb(245, 245, 245);
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 95vh;
}

a{
	text-decoration: none;
}

input::placeholder{
	color: #5f5f5f;
}

.blocker{
	position: absolute;
	left: 0; top: 0;
	display: flex;
	width: 100%;
	height: 100%;
	font-size: 30px;
	color: #0069d9;
	justify-content: center;
	align-items: center;
}

.frame{
	width: 400px;
	margin: 15px auto;
}

.logo{
	width: 130px;
	height: 130px;
	margin: 0 auto 15px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

.logo img{
	width: 100%;
}

.form-body{
	position: relative;
	background-color: #fff;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}

.form-sec{
	padding: 18px 25px;
}

.form-title{
	margin-bottom: 20px;
	font-weight: 400;
	color: rgb(59, 59, 59);
	text-align: center;
}

.form-group{
	margin-bottom: 10px;
}

.input input{
	display: block;
	width: 100%;
	padding: 12px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-size: 13px;
	position: relative;
}

/*.input label::after, .custom-select label::after{*/
/*	content: "";*/
/*	display: block;*/
/*	position: absolute;*/
/*	left: 50%;*/
/*	bottom: 0;*/
/*	width: 0%;*/
/*	height: 2px;*/
/*	background-color: #0069d9;*/
/*	transition: .5s ease;*/
/*	-webkit-transition: .5s ease;*/
/*	-moz-transition: .5s ease;*/
/*	-o-transition: .5s ease;*/
/*}*/

/*.input input:focus + label::after, .active label::after{*/
/*	left: 0;*/
/*	width: 100%;*/
/*}*/

.input-group .input{
	width: 100%;
}

.input{
	position: relative;
}

.input-group{
	display: flex;
	width: 100%;
}

.status, .eye i{
	position: absolute;
	top: 13px;
	right: 9px;
	display: none;
}

.invalid .status{
	display: block;
	color: #ff6b6b;
	top: 10px;
}

.valid input, .invalid input{
	padding-right: 28px !important;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
}

.invalid-feedback{
	color: #ff6b6b;
	font-size: 12px;
	display: none;
}

.invalid .invalid-feedback{
	display: block;
}

.error.invalid {
	margin: 10px 0;
}

.invalid input, .invalid .select-selected.validate{
	border-color: #ff6b6b;
}

.invalid .checkmark {
	border: 2px solid #ff6b6b;
}

@keyframes spinner-border {
	to { transform: rotate(360deg); }
}

.spinner-border {
	display: block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	border: .1em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border .75s linear infinite;
}

.btn{
	width: 100%;
	padding: 13px 10px;
	background-color: #1abc9c;
	border: none;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 10px;
}

.btn:not(:disabled){
	cursor: pointer;
}

.btn:hover{
	background-color: #16a085;
}

.btn:disabled {
	background-color: #2bcbba;
	color: #fff;
	opacity: 0.6;
}

.btn.resend{
	background-color: transparent;
	margin: 5px;
	color: #2bcbba;
}

.btn.resend:disabled{
	background-color: transparent;
	color: #888;
}

.form-footer{
	padding: 15px 12px;
	text-align: center;
	border-top: 1px solid #e9e9e9;
	color: #222;
	font-size: 13px;
}

.agree {
	margin-bottom: 12px;
}

/* The checkbox container */
.checkbox-container {
	display: block;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	font-size: 13px;
	color: rgb(143, 143, 143);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
	background-color: #0e8d0e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
	left: 5px;
	top: 3px;
	width: 3px;
	height: 6px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*the container must be positioned relative:*/
.custom-select {
	position: relative;
	font-family: Arial, serif;
	margin-right: 5px;
}

.custom-select select {
	display: none; /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
	position: absolute;
	content: "";
	top: 17px;
	right: 11px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #000;
}

/*point the arrow upwards when the select box is open (active):*/
/*.select-selected.select-arrow-active:after {*/
/*	border-color: transparent transparent #000 transparent;*/
/*	top: 7px;*/
/*}*/

/*style the items (options), including the selected item:*/
.select-selected {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	background-color: #fff;
	height: 100%;
	padding: 11px 12px;
	font-size: 13px;
	display: flex;
	align-items: center;
}

.select-items div {
	background-color: #fff;
	height: 100%;
	padding: 11px 12px;
	font-size: 13px;
	display: flex;
	align-items: center;

}

.select-selected:not(.title) {
	color: #000;
}

.select-selected.title {
	color: rgba(95, 95, 95, 0.5);
}

/*style items (options):*/
.select-items {
	position: absolute;
	background-color: #eee;
	top: 110%;
	left: 0;
	right: 0;
	z-index: 99;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 5px;
	overflow: hidden;
}

.select-items {
	color: #000;
}

/*hide the items when the select box is closed:*/
.select-hide {
	height: 0;
	transition: 2s;
}

.same-as-selected{
	background-color: #eee !important;
}

.select-items div:hover, .same-as-selected:hover {
	background-color: rgba(0, 0, 0, 0.07) !important;
	cursor: pointer;
}

.eye i{
	display: block !important;
	color: #444
}



#recaptcha > div > div{
	width: 100% !important;
	text-align: center !important;
	overflow: hidden;
	margin: 0 auto;
}

@media (max-width: 480px) {
	body{
		margin: 15px;
	}
	.frame{
		width: 100%;

	}

	#recaptcha > div > div{
		width: 112% !important;
		transform: scale(0.78) !important;
		margin-left: -17px;
	}
}