@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
	font-family: "Poppins", sans-serif;
}
.bg-img {
	background-color: #f9f9f5;
	background-image: radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	padding: 120px 16px 40px;
}
form i {
	margin: 10px 20px;
	cursor: pointer;
}
.center-line {
	text-align: center;
	justify-content: center;
}
.alert {
	display: inline-block;
	margin: 5px auto;
	padding: 10px;
	background-color: #f44336;
	color: white;
	opacity: 1;
	transition: opacity 0.6s;
	max-width: 100%;
	border-radius: 5px;
}
.alert a {
	color: white;
	text-decoration: underline;
}
.alert a:hover {
	color: white;
	text-decoration: none;
}
.alert.success {
	background-color: #04AA6D;
}
.alert.info {
	background-color: #2196F3;
}
.alert.warning {
	background-color: #ff9800;
}
.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}
.closebtn:hover {
	color: black;
}
input {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-shadow: -1px 2px 12px 0px rgba(161, 161, 161, 0.75);
}
input:-webkit-autofill {
	background-color: #FBE9D1 !important;
	color: #333 !important;
	box-shadow: -1px 2px 12px 0px rgba(161, 161, 161, 0.75);
}
.cont-checkbox {
	display: block;
	position: relative;
	text-align: left;
	padding-left: 30px;
	margin: 18px 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.cont-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #fff;
	box-shadow: -1px 2px 12px 0px rgba(161, 161, 161, 0.75);
}
.cont-checkbox:hover input ~ .checkmark {
	background-color: #FBE9D1;
}
.cont-checkbox input:checked ~ .checkmark {
	background-color: #E74833;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.cont-checkbox input:checked ~ .checkmark:after {
	display: block;
}
.cont-checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.content {
	position: relative;
	transform: none;
	top: auto;
	left: auto;
	width: 100%;
	max-width: 400px;
	background: rgba(255, 255, 255, 0.04);
}
.icon {
	padding: 0 10px;
	height: 20px;
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.content header {
	text-align: center;
	color: #444;
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 10px 0;
}
.field {
	position: relative;
	height: 45px;
	width: 100%;
	display: flex;
	background: rgba(255,255,255,0.94);
}
.field span {
	color: #222;
	width: 40px;
	line-height: 45px;
}
.field input {
	padding-left: 40px;
	height: 100%;
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	color: #222;
	font-size: 16px;
}
.space {
	margin-top: 16px;
}
.show {
	position: absolute;
	right: 30px;
	font-size: 13px;
	font-weight: 700;
	color: #222;
	display: none;
	cursor: pointer;
}
.pass-key:valid ~ .show {
	display: block;
}
.pass {
	text-align: left;
	margin: 10px 0;
}
.pass a {
	color: #244856;
	text-decoration: none;
}
.pass:hover a {
	text-decoration: underline;
}
.field input[type="submit"] {
	padding: 0;
	background: #B4384F;
	color: white;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 600;
	cursor: pointer;
}
.field input[type="submit"]:hover {
	background: #782535;
}
.login {
	color: white;
	margin: 20px 0;
}
.links {
	display: flex;
	cursor: pointer;
	color: white;
	margin: 0 0 20px 0;
}
.links i {
	font-size: 17px;
}
i span {
	margin-left: 8px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 16px;
}
.text {
	padding-top: 20px;
	font-size: 18px;
	color: #555;
}
.text-small {
	font-style: italic;
	padding-top: 10px;
	font-size: 13px;
	color: #555;
}
.text a {
	color: #B4384F;
	text-decoration: underline;
}
.text a:hover {
	text-decoration: none;
}
