/* GLOBAL */
* {
	padding: 0px;
	margin: 0px;
}

@font-face {
	font-family: 'PremierLeague';
	src: url('../fonts/Premier_Sans.ttf') format('truetype');
}
@font-face {
	font-family: PremierSans-Bold;
	src: url(../fonts/PremierLeagueW01-Bold.woff2);
}
@font-face {
	font-family: PremierSans-Heavy;
	src: url(../fonts/PremierLeagueW01-Heavy.woff2);
}
@font-face {
	font-family: PremierSans-Regular;
	src: url(../fonts/PremierLeagueW01-Regular.woff2);
}

body {
	 font-family: Arial, Helvetica, sans-serif;
	 padding: 10px;
	 padding-bottom: 150px;
	 background-image: url("../images/premierleaguelogo_login.jpg");
	 background-attachment: fixed;
}

header {
	background: #37003d;
	height: 150px;
	width:100%;
	display: flex;
	align-items: center;
}
h1 {
	color: #ffffff;
	font-size: 100px;
	font-family: 'PremierLeague';
	letter-spacing: 10px;
}
button, input[type=submit] {
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	min-width: 100px;
}
input[type=text], input[type=password] {
	padding: 5px;
}



/* VALIDATION */
.validation_pass {
	background: #00ff87;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	animation: fadeOut ease;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-duration: 5s;
	animation-delay: 21s; /* looks best if delay is 4s before javascript elementRemover triggers (if duration is 5s) */
}
.validation_fail {
	background: #e90052;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	animation: fadeOut ease;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-duration: 5s;
	animation-delay: 21s; /* looks best if delay is 4s before javascript elementRemover triggers */
}
@keyframes fadeOut {
	50% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}



/* FORMS */
.form_container {
	background: #d6cfd8;
	padding: 5px;
	width: 25%;
}
.form_header {
	background: #37003c;
	color: #ffffff;
	padding: 5px;
}
.form_label {
	padding-top: 5px;
}
.form_field {
	padding-bottom: 5px;
}



/* LOGOUT */
.logout_container {
	position: absolute;
	right: 10px;
	top: 10px;
}



/* FORGOT LOGIN */
#form_forgotten {
	font-size: small;
	font-weight: bold;
	letter-spacing: 0.25px;
	text-decoration: none;
	color: #37003c;
}
#form_forgotten:hover {
	text-decoration: underline;
	color: #37003c;
}
#form_forgotten_icon {
	font-size: 40px;
	text-decoration: none;
	color: #37003c;
}
#form_forgotten_icon:hover {
	color: #FF0000;
}



/* C O N S T R U C T I O N   N O T I C E */
.construction_notice {
	width: 680px;
	text-align: center;
	background: white;
	border: 4px solid #000000;
	margin-top: 15px;
	/*animation: widen 10s linear alternate infinite;*/
}

.construction_notice p {
	font-size: x-large;
	padding: 15px;
}

/*@keyframes widen {
	100% {
		width: 100%;
	}
}*/

.construction_notice_stripe {
	height: 25px;
	color: white;
	background: repeating-linear-gradient(
		45deg,
		#FFFF00,
		#FFFF00 10px,
		#000000 10px,
		#000000 20px
	);
}