/* styles for error.jsp */
body {
	background: #f0f0f0;
	color: #333;
	padding: 0;
	margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	position: relative;
	cursor: auto;
}

.bb-login {
	background-color: #272727;
	padding-top: 0;
}

#error_message {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	display: -webkit-box;
	-webkit-box-pack: center; /* justify-content */
	-webkit-box-align: center; /* align-items */
}

#error_message_body {
	max-width: 500px;
}

#error_message_logo {
	text-align: center;
}

#error_message_logo img {
	width: 100%;
	max-width: 290px;
}

#error_message_content {
	min-height: 200px;
	color: #dadbdd;
}

#error_message_button {
	text-align: center;
}

#error_message_title {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

#error_message_title .error_image {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	vertical-align: middle;
}

a {
	color: #E69410;
}

#error_message_title .title_content {
	font-weight: bold;
	font-size: 20px;
	color: red;
	vertical-align: middle;
}

#error_message_button .back_to_login {
	background-color: #DADADA;
	box-shadow: inset 0 0 0 2px #DADADA;
	text-decoration: none;
	display: block;
	padding: 10px 0px;
	border: 1px solid #aeaeae;
	color: #555;
	width: 100%;
	font-weight: bold;
}

@media only screen and (max-width:960px) {
	#error_message_body {
		width: 80%;
		margin: 20% auto;
	}
}