*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	outline: 0 none;
	font-family: inherit;
}

:root{
	--blue:#222543;
	--red:#9d2727;
}

html,body{
	height:100%;
	font-family: Arial,sans-serif;
	font-size:14px;
}
.clear{
	clear:both
}

.login-container{
	width:100%;
	height:100%;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}

.login-box{
	width:360px;
	display:flex;
	position:relative;
}	

.login-box form{
	width: 100%;
}

.login-logo{
	display: block;
	width:100%;
	text-align: center;
}

.login-logo img{
	max-width:100%;
	height:auto;
	display: inline-block;
	margin:0 auto
}

.login-result{
	margin-top:10px
}

.login-wrap{
	width:100%;
	display: block;
	background:#fff;
	padding:15px 15px 30px 15px;
	margin-top:15px;
	border-radius:4px;
	border:1px solid #e8e8e8
}

.login-item{
	width:100%;
	display: block;
	margin-top:15px
}

.login-input[type=text],.login-input[type=password]{
	width:100%;
	display: block;
	padding:0 15px;
	background: #ddd;
	color:#000;
	border:none;
	height:50px;
	font-size:15px;
	border-radius:4px
}

.login-button{
	width:100%;
	display: inline-block;
	border:none;
	background: var(--red);
	color:#fff;
	padding:15px 15px;
	cursor: pointer;
	font-weight: 700;
	font-size:17px;
	letter-spacing:.5px;
	border-radius:4px
}

.login-button:hover{
	background: var(--blue);
}

/*----------------
	MESSAGE BOX
-----------------*/
.messageTable{
	margin-top:0
}

.messageTable .messageTitle{
	margin-top:5px
}

.messageTable .messageHeader{
	font-weight:700
}

.alert {
	padding:20px 15px;
	margin-bottom: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	width:100%;
	position: relative;
}

.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.alert .close {
  position: relative;
  top: 5px;
  right: 15px;
  color: inherit;
  border:none;
  background: transparent;
}

.access-ignore-wrapper{
	height:100vh;
	align-items:center;
	justify-content: center;
}

.access-ignore{
	max-width:550px;
	padding:60px;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border:1px solid #e8e8e8;
	border-radius:6px
}

.access-ignore-title{
	width:100%;
	display: block;
	text-align: center;
	font-size:30px;
	color:var(--dblue);
	font-weight: 700;
}

.access-ignore-text{
	display: block;
	width:100%;
	margin-top:30px;
	font-size:18px;
	line-height: 36px;
	text-align: center;
}
