
@font-face {
	font-family: 'Play';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('/fonts/play-v12-latin-regular.woff2') format('woff2'), url('/fonts/play-v12-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Play';
	font-style: normal;
	font-weight: 700;
	src: local(''), url('/fonts/play-v12-latin-700.woff2') format('woff2'), url('/fonts/play-v12-latin-700.woff') format('woff');
}

*:not(i) {
	font-family:'Play',sans-serif !important;
	font-weight:normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #496985;
	--second-color: #ffffff;
	--black-color: #000000;
}

a {
	text-decoration: none;
	color: var(--black-color);
}

a:hover {
	text-decoration: underline;
}

.wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.login_box {
	position: relative;
	width: 400px;
	backdrop-filter: blur(25px);
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	padding: 2.5em 2.5em 2.5em 2.5em;
	color: var(--black-color);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

.input_box {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 20px 0;
	margin-bottom:5px;
}

.input-field {
	width: 100%;
	height: 40px;
	font-size: 16px;
	background: transparent;
	color: var(--black-color);
	padding-inline: 20px 50px;
	border: 1px solid var(--primary-color);
	border-radius: 6px;
	outline: none;
}

.label {
	position: absolute;
	top: -15px;
	left: 20px;
	transition: 0.2s;
	padding:4px 10px;
	background-color: var(--second-color);
	border-radius:10px;
	font-size: 14px;
}

.icon {
	position: absolute;
	top: 12px;
	right: 25px;
	/*font-size: 16px;*/
	color: var(--primary-color);
}

.input-submit {
	width: 100%;
	height: 50px;
	background: #ececec;
	font-size: 16px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: 0.3s;
	border:1px solid #91ae8f;
}

.input-submit:hover {
	background: var(--primary-color);
	color: var(--second-color);
	border:none;
}

@media only screen and (max-width: 564px) {
	.wrapper { padding: 20px; }

  .login_box { padding: 1.5em; }
}		

.lg-img {width:50%; max-width:200px;padding-bottom:1em}