@charset "utf-8";

@import "reset.css";

[class*="fontawesome-"]:before {
	font-family: 'FontAwesome', sans-serif;
}

body {
	color: #000;
	font-family: "Varela Round", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	background-image: url(images/train-station-min.jpg);
	/* background-position:top; */
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	-webkit-appearance: none;
}

@font-face {
	font-family: 'Varela Round';
	font-style: normal;
	font-weight: 400px;
}

#login {
	/* margin: 9% auto 0px auto; */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	opacity: 0.9;
}

#login h2 {
	background-color: #fff;
	-webkit-border-radius: 20px 20px 0 0;
	-moz-border-radius: 20px 20px 0 0;
	border-radius: 20px 20px 0 0;
	color: #1e7eb0;
	font-size: 28px;
	padding: 30px 26px;
	font-weight: bold;
	font-family: 'Rockwell Extra Bold', 'Rockwell Bold', monospace;
	text-align: center;
}

#login .title-login {
	margin: 5px 0px -15px 0px;
}

#login h2 img {
	margin-top: -15px;
	padding: 0px;
	margin: -15px auto 5px auto;
}

#login fieldset {
	background-color: #fff;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	border-radius: 0 0 20px 20px;
	padding: 20px 24px;
}

#login fieldset p {
	color: #777;
	margin-bottom: 14px;
}

#login fieldset p:last-child {
	margin-bottom: 0;
}

#login fieldset input {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#login fieldset input[type="text"],
#login fieldset input[type="password"] {
	background-color: #eee;
	color: #777;
	padding: 4px 10px;
	width: 328px;
	font-style: italic;
}

#login fieldset input[type="submit"] {
	background-color: #373085;
	color: #fff;
	display: block;
	/* margin: 0 auto; */
	padding: 4px 0;
	/* width: 100px; */
	cursor: pointer;
	width: 100%;
	margin: 0px 2px;
}

#login fieldset input[type="submit"]:hover {
	background-color: #D9DAED;
}

#footer {
	margin: 20px auto;
	font-size: 12px;
	color: #FFF;
	width: 300px;
	text-align: center;
}

.marquee {
	position: fixed;
	top: 0;
	margin: 0;
	width: 100%;
	background-color: #49428f;
	display: inline-flex;
	overflow: hidden;
	white-space: nowrap;
	border: 2px solid #e0b638;
}

.marquee-text {
	padding-top: 10px;
	vertical-align: middle;
	font-size: 25px;
	color: yellow;
	margin: 0;
	width: 100%;
	animation: marquee 10s linear infinite;
	display: inline-block;
	padding-right: 10px;
}

span.marquee-text-running {
	padding-right: 40px;
}

span.marquee-text-running:hover {
	color: white;
	cursor: pointer;
	animation-play-state: paused;
}

.marquee-object {
	height: auto;
	background-color: #e0b638;
	padding: 10px 30px 10px 30px;
	font-size: x-large;
	color: white;
	z-index: 1;
	display: block;
	border-radius: 0 0 100px 0;
}

.captcha_div {
	display: flex;
	margin-bottom: 10px;
	padding: 5px;
}

@font-face {
	font-family: "Noto Color Emoji";
	src: local("NotoColorEmoji"), local("NotoColorEmoji"), url("NotoColorEmoji.ttf");
}

.captcha_div p {
	font-family: 'Noto Color Emoji', Verdana, Tahoma;
	margin-top: auto !important;
	margin-bottom: auto !important;
	margin-right: 10px;
}

.captcha_div input {
	width: 12em !important;
	background-color: #eee;
	color: #777;
	padding: 4px 10px;
	font-style: italic;
}

.captcha_div input::-webkit-inner-spin-button,
.captcha_div input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

.no_select {
	user-select: none;
	/* standard syntax */
	-webkit-user-select: none;
	/* webkit (safari, chrome) browsers */
	-moz-user-select: none;
	/* mozilla browsers */
	-khtml-user-select: none;
	/* webkit (konqueror) browsers */
	-ms-user-select: none;
	/* IE10+ */
}

/* animation */
@keyframes slide {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}