* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Gotham';
}

body {
	background: #ecf0f3;
}

@media only screen and (max-height: 400px) {
	.wrapper {
		width: 340px;
		min-height: 360px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%,0);
		padding: 40px 30px 30px 30px;
		background-color: #ecf0f3;
		border-radius: 15px;
		box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
	}
}

@media only screen and (min-height: 400px) {
	.wrapper {
		width: 340px;
		min-height: 360px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		padding: 40px 30px 30px 30px;
		background-color: #ecf0f3;
		border-radius: 15px;
		box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
	}
}

.logo {
	width: 100%;
	height: 100px;
	margin: 10px, 10px;
}

.logo img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
 }

.logo .name1 {
	position: relative;
	top: -75px;
	left: 120px;
	width: calc(100% - 110px);
	font-size: 0.9rem;
	color: #555;
}

.logo .name2 {
	position: relative;
	top: -70px;
	left: 110px;
	width: calc(100% - 110px);
	font-size: 0.9rem;
	color: #555;
}

.logo .name3 {
	position: relative;
	top: -65px;
	left: 115px;
	width: calc(100% - 110px);
	font-size: 0.9rem;
	font-family: 'GothamUltra';
	color: #555;
}

.wrapper .gap {
	height: 20px;
}

.wrapper .gapcaptcha {
	height: 90px;
}

.wrapper .form-field input {
	position: relative;
	width: calc(100% - 15px);
	left: 15px;
	display: block;
	border: none;
	outline: none;
	background: none;
	font-size: 1rem;
	color: #666;
	top: 11px;
	padding: 0px 35px 15px 0px;
}

.wrapper .form-field {
	position: relative;
	padding-left: 10px;
	margin-bottom: 5px;
	border-radius: 20px;
	box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
	position: relative;
	font-size: 1.5rem;
	top: 0px;
	left: 5px;
	color: #555;
}

.text-danger {
	position: relative;
	font-size: 0.8rem;
	color: red;
	top: -5px;
	left: 45px;
}

.wrapper .btn {
	font-size: 1.5rem;
	box-shadow: none;
	width: 100%;
	height: 40px;
	background-color: #f5c94f;
	color: #374773;
	border-radius: 25px;
	box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
	letter-spacing: 1.3px;
	font-family: 'GothamUltra';
	text-align: center;
	padding: 0px;
}

.wrapper .btn:hover {
	background-color: #374773;
	color: #f5c94f;
}

.alert-danger {
	position: absolute;
	color: red;
	font-family: 'GothamUltra';
	font-size: 1rem;
	top: calc(50% - 135px);
	left: 10px;
	width: calc(100% - 20px);
	height: 75px;
	text-align: center;
}

.alert-success {
	position: absolute;
	color: #374773;
	font-family: 'GothamUltra';
	font-size: 1rem;
	top: calc(50% - 135px);
	left: 10px;
	width: calc(100% - 20px);
	height: 75px;
	text-align: center;
}
