* {
	box-sizing: border-box;
	text-decoration: none;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
body {
	/* #edf1f5 */
	background: #000 url('../img/login_bg.jpg') top center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

label {
	font-size: 0.8em;
	font-weight: bold;
}

.error-text {
	color: red;
}

.container {
	position: relative;
	padding: 0px 40px;
	max-width: 900px;
}

.container-white {
	position: relative;
	background: white;
	padding: 0px 40px;
	border: 1px solid darkgray;
	border-radius: 10px;
	margin-top: 20px;
	box-shadow: 0px 0px 18px #888888;
	max-width: 900px;
}

#exitBtn {
	position: absolute;
	margin-top: -10px;
	right: 10px;

}

.table-shadowed {
  border-collapse: collapse;
  margin: 10px 0 20px 0;
  -webkit-box-shadow: 6px 6px 24px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 6px 6px 24px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 6px 6px 24px -2px rgba(0, 0, 0, 0.75);
}

.table-shadowed th {
  background-color: #eee;
  vertical-align: middle;
}
.table-shadowed td {
  background-color: #fff;
}




.table>:not(caption)>*>th {
  text-align: center;
  background-color: #ddd;
}

@media only screen and (max-width: 400px) {
	h3 {
		font-size: 1.3em;
	}

}

@media only screen and (max-width: 900px) {
	.container {
		max-width: 95%;
	}

	.container-white {
		max-width: 95%;
	}
}

.form-control.is-invalid {
	background-color: #ffeeee;
}

.form-control.is-valid {
	background-color: #eeffee;
}