@font-face {
	font-family: 'Ubuntu';
    src: url('../fonts/ubuntu/Ubuntu-R.ttf') format('truetype');
}
@font-face {
	font-family: 'Ubuntu';
    src: url('../fonts/ubuntu/Ubuntu-RI.ttf') format('truetype');
    font-style: italic;
}
@font-face {
	font-family: 'Ubuntu';
    src: url('../fonts/ubuntu/Ubuntu-B.ttf') format('truetype');
	font-weight: bold;
}
@font-face {
	font-family: 'Ubuntu';
    src: url('../fonts/ubuntu/Ubuntu-BI.ttf') format('truetype');
    font-style: italic;
	font-weight: bold;
}

body {
	background-image: url(../img/background.jpg);
	background-position: center top;
	/* background-size: cover; */
	font-family: "Ubuntu";
	color: #333333;
}

.login-container {
	margin: 20px;
	background-color: white;
	border-radius: 15px;
}

@keyframes borderInput {
	from { border-color: #F0F0F0; }
	to { border-color: #b10304; }
}
@-webkit-keyframes borderInput {
	from { border-color: #F0F0F0; }
	to { border-color: #b10304; }
}

textarea:focus, input:focus {
  	border-color: #b10304;
	-webkit-animation-name: borderInput; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
	animation-name: borderInput;
	animation-duration: 1s;
}

input {
	outline: none;
	width: 100%;
	display: block;
	border: none;
	background-color: transparent;
	height: 100px;
	line-height: 100px;
	padding-left: 100px;
	border-bottom: 1px solid #F0F0F0;
	font-size: 20px;
	color: #333333;
}

input[name="username"] {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.login-button {
	width: 100%;
	padding: 25px;
	text-align: center;
}

button {
	background-color: #b10304;
	border: none;
	border-radius: 25px;
	width: 200px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	color: white;
}

@keyframes backgroundButton {
	from { background-color: #b10304; color: white; }
	to { background-color: #F0F0F0; color: #333333; }
}
@-webkit-keyframes backgroundButton {
	from { background-color: #b10304; color: white; }
	to { background-color: #F0F0F0; color: #333333; }
}

button:hover {
	color: 333333;
  	background-color: #F0F0F0;
	-webkit-animation-name: backgroundButton; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
	animation-name: backgroundButton;
	animation-duration: 1s;
}

.username-input, .password-input {
	position: relative;
}
.username-input::before, .password-input::before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	width: 100px;
	line-height: 100px;
	color: #333;
	text-align: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	font-size: 20px;
}

.username-input::before {
	content: "\f007";
}

.password-input::before {
	content: "\f023";
}

.logo {
	position: relative;
	width: 184px;
	height: 127px;
	background-image: url(../img/logo.png);
	left: 50%;
	margin-left: -92px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.logout-text {
	padding: 20px;
	line-height: 30px;
	text-align: center;
}
