* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	font-family: "Fira Sans", sans-serif;
}

body {
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	background: #00aaff;
	flex-flow: column;
	display: flex;
	height: 100vh;
	background-size: cover;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

body .card {
	margin: 10px;
	background: #eeeeee;
	border-radius: 16px;
	width: 400px;
	max-width: calc(100% - 20px);
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

body .section-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

body .section-logo div {
	width: 100%;
	max-width: 600px;
	padding: 10px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

body .section-logo div img {
	max-width: 100%;
	max-height: 35vh;
}

body .section-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

body .section-form form {
	padding: 20px;
	width: 100%;
	max-width: 600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
}

body .section-form form .error-msg {
	font-size: 13px;
	background: rgba(255, 0, 0, 0.2);
	color: #B73636;
	padding: 12px;
	border-radius: 16px;
	overflow-wrap: break-word;
}

body .section-form form .success-msg {
	font-size: 13px;
	background: #17B465;
	color: white;
	padding: 12px;
	border-radius: 16px;
	overflow-wrap: break-word;
}

body .section-form form button, a#login-google {
	padding: 12px;
	margin: 0px 0;
	background: #00aaff;
	color: white;
	border: 0;
	border-radius: 16px;
	font-size: 14px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	text-align:center;
}

body .section-form form button:active {
	background: #0058BF;
	border: 0;
}

body .section-form form button:focus {
	outline: 0;
}

body .section-form form a#login-google {
	background: #fff;
	color: #222;
}

body .section-form form a#login-google:active {
	background: #e6e6e6;
}

body .section-form form button img {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	left: 0;
	margin-right: 24px;
}

body .section-form form a {
	margin: 5px 0 10px;
	text-decoration: none;
	color: #0058BF;
	font-weight: bold;
	font-size: 12px;
}

body .section-form form .div-or {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	color: #0058BF;
}

body .section-form form .div-or div {
	background: #8F959A;
	height: 1px;
	width: 100%;
	margin: 0 10px;
}

input {
	font-size: 14px;
	width: 100%;
	border: 0;
	border-radius: 16px;
	color: #0058BF;
	margin: 8px 0;
	outline: none;
	padding: 12px;
	font-size: 14px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

input::-webkit-input-placeholder {
	color: #8F959A;
	opacity: 1;
}

input:-ms-input-placeholder {
	color: #aaa;
	opacity: 1;
}

input::-ms-input-placeholder {
	color: #aaa;
	opacity: 1;
}

input::placeholder {
	color: #aaa;
	opacity: 1;
}

input:focus {
	border-color: #8F959A;
	-webkit-box-shadow: 0 0 2px 0 #8F959A;
	box-shadow: 0 0 2px 0 #8F959A;
}

.inputWithIcon input {
	padding-left: 40px;
}

.inputWithIcon {
	position: relative;
}

.inputWithIcon i {
	position: absolute;
	left: 0;
	top: 8px;
	padding: 12px 10px;
	color: #8F959A;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.inputWithIcon input:focus + i {
	color: #0058BF;
}
/*# sourceMappingURL=style.css.map */
