@font-face {
    font-family: 'Audiowide';
    src: url('../font/Audiowide-Regular.eot');
    src: url('../font/Audiowide-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Audiowide-Regular.woff2') format('woff2'),
        url('../font/Audiowide-Regular.woff') format('woff'),
        url('../font/Audiowide-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
	background-color: #f3f3f3;
}

.title_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-family: "Audiowide", "Veranda", serif;
	overflow: #272822;
	margin-top: 150px;
	margin-bottom: 10px;
	letter-spacing: 6px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.title {
	background: 50% 0% / 50% 0% no-repeat
	-o-radial-gradient(bottom, ellipse, #2e6dd9, transparent, transparent);
	background: 50% 0% / 50% 0% no-repeat
	radial-gradient(ellipse at bottom, #2e6dd9, transparent, transparent);
	-webkit-background-clip: text;
	background-clip: text;
	color: #245a83;
	font-size: 120px;
	font-weight: bold;
	-webkit-animation: fadeIn 3s;
	        animation: fadeIn 3s;
}

.title2 {
	background: 50% 0% / 50% 0% no-repeat
	-o-radial-gradient(bottom, ellipse, #fff, transparent, transparent);
	background: 50% 0% / 50% 0% no-repeat
	radial-gradient(ellipse at bottom, #fff, transparent, transparent);
	-webkit-background-clip: text;
	background-clip: text;
	color: #1a3f5c;
	font-size: 120px;
	-webkit-animation: fadeIn2 3s;
	        animation: fadeIn2 3s;
}

.logo-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	-webkit-animation: fadeIn 4s;
	        animation: fadeIn 4s;	
	margin-bottom: 100px;
}

.logo {
	background-image: url('../logo.png');
	background-repeat: no-repeat;	
	width: 150px;
	height: 150px;
	background-position: center;
	-webkit-filter: drop-shadow(0px 1000px 0 #245a83);
	        filter: drop-shadow(0px 1000px 0 #245a83);
	-webkit-transform: translateY(-1000px);
	    -ms-transform: translateY(-1000px);
	        transform: translateY(-1000px);
	background-size: contain;
	background-repeat: no-repeat;
}
	
.btn_ctr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 200px;
	-webkit-animation: fadeIn 4s;
	        animation: fadeIn 4s;
}

.btn_ctr a {
	text-decoration: none;
	color: #245a83;
	padding: 10px 80px;
	border: 1px solid #245a83;
	font-size: 30px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	border-radius: 12px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	text-align: center;
	font-family: Verdana, sans-serif;
}

.btn_ctr a:hover {
	background-color: #245a83;
	border: 1px solid rgba(255,255,255, 0.8);
	color: white;
	cursor: pointer;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn2 {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes fadeIn2 {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

#login_background {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	position: fixed;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	top: 0;
	left: 0;
	z-index: 100;
	overflow: hidden;
	visibility: hidden;
}

#login_window{
	height: 350px;
	max-width: 400px;
	width: 50vw;
	background-color: #f3f3f3;
	position: absolute;
	-webkit-transform: translate(-50%,-50%) scale(0);
	    -ms-transform: translate(-50%,-50%) scale(0);
	        transform: translate(-50%,-50%) scale(0);
	top: 50%;
	left: 50%;
	border-radius: 10px;
	-webkit-backdrop-filter: blur(10px);
	        backdrop-filter: blur(10px);
	border: 2px solid rgba(255,255,255,0.1);
	-webkit-box-shadow: 0 0 40px rgba(8,7,16,0.2);
	        box-shadow: 0 0 40px rgba(8,7,16,0.2);
	padding: 50px 35px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
}

#login_window.show {
	-webkit-transform: translate(-50%,-50%) scale(1);
	    -ms-transform: translate(-50%,-50%) scale(1);
	        transform: translate(-50%,-50%) scale(1);
	opacity: 1;
}

#login_window *{
	letter-spacing: 0.5px;
	outline: none;
}

#login_window h3{
	font-family: Verdana, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	color: #245a83;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.input_login{
	display: block;
	height: 50px;
	width: 100%;
	background-color: rgba(255,255,255,0.07);
	border-radius: 5px;
	border: 1px solid #245a83;
	padding: 0 10px;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 300;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #1a3f5c;
}

::-webkit-input-placeholder{
	color: rgba(26, 63, 92, 0.5);
}

::-moz-placeholder{
	color: rgba(26, 63, 92, 0.5);
}

:-ms-input-placeholder{
	color: rgba(26, 63, 92, 0.5);
}

::-ms-input-placeholder{
	color: rgba(26, 63, 92, 0.5);
}

::placeholder{
	color: rgba(26, 63, 92, 0.5);
}

.input_login:-webkit-autofill,
.input_login:-webkit-autofill:focus {
	-webkit-transition: background-color 600000s 0s, color 600000s 0s;
	transition: background-color 600000s 0s, color 600000s 0s;
}

.button_login{
	margin-top: 50px;
	width: 100%;
	background-color: #245a83;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255, 0.8);
	color: white;
	padding: 15px 0;
	font-size: 18px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.button_login:hover {
	background-color: #1a3f5c;
	color: white;
}

.login_window_close {
	color: #aaa;
	position: absolute;
	right: 15px;
	top: 5px;
	font-size: 48px;
	font-weight: bold;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.login_window_close:hover,
.login_window_close:focus {
	text-decoration: none;
	cursor: pointer;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	color: #1a3f5c;
}

.loading_container {
	width: 100%;
	overflow: hidden;
	margin-top: 60px;
}

.loading_md {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.bar {
	width: 10px;
	height: 20px;
	background: #fff;
	display: inline-block;
	-webkit-transform-origin: bottom center;
	    -ms-transform-origin: bottom center;
	        transform-origin: bottom center;
	-webkit-animation: loader 1.2s linear infinite;
	        animation: loader 1.2s linear infinite;
	margin: 2px;
}

.bar1 {
	-webkit-animation-delay: 0.1s;
	        animation-delay: 0.1s;
}

.bar2 {
	-webkit-animation-delay: 0.2s;
	        animation-delay: 0.2s;
}

.bar3 {
	-webkit-animation-delay: 0.3s;
	        animation-delay: 0.3s;
}

.bar4 {
	-webkit-animation-delay: 0.4s;
	        animation-delay: 0.4s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
    background: red;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    background: #2e6dd9;
  }
  100% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
    background: transparent;
  }
}

@keyframes loader {
  0% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
    background: red;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    background: #2e6dd9;
  }
  100% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
    background: transparent;
  }
}

.res_in {
	position: absolute;
	top: 272px;
	left: 40px;
	color: #a33c3c;
	font-size: 12px;
	text-wrap: wrap;
}

@media(max-width: 900px) {
	.title, .title2{
		font-size: 80px;
	}
}

@media(max-width: 700px) {
	.title, .title2{
		font-size: 60px;
	}
}

@media(max-width: 300px) {
	.title, .title2{
		font-size: 40px;
	}
}