@charset "utf-8";
.header {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.header .sysname {
  font-size: 20px;
}
.logout {
  margin-left: 10px;
}
.header-container{
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

table {
	width: 500px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}

td {
	padding: 15 0;
}

td:first-child {
	text-align: right;
}

input, img {
	vertical-align: middle;
	height: 30px;
	margin-top: 5px;
	margin-bottom: 5px;
}
/* Button  */
.btn, .btn-two {
	margin: 9px;
}

.btn-gradient {
	margin: 5px;
}

/* Here you can change the button sizes */
.btn.small, .btn-two.small, .btn-gradient.small, .btn-effect.small {
	padding: 8px 18px;
	font-size: 14px;
}

/* Colors for .btn and .btn-two */
.btn.cyan, .btn-two.cyan {
	background-color: #7fccde;
}

.rounded {
	border-radius: 10px;
}

/* default button style */
.btn {
	position: relative;
	border: 0;
	padding: 15px 25px;
	display: inline-block;
	text-align: center;
	color: white;
}

.btn:active {
	top: 4px;
}

/* color classes for .btn */
.btn.cyan {
	box-shadow: 0px 4px 0px #73B9C9;
}

.btn.cyan:active {
	box-shadow: 0 0 #73B9C9;
	background-color: #70B4C4;
}

/* Gradient buttons */
.btn-gradient {
	text-decoration: none;
	color: white;
	padding: 10px 30px;
	display: inline-block;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.21);
	border-bottom: 4px solid rgba(0, 0, 0, 0.21);
	border-radius: 4px;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
/* Gradient - ugly css is ugly */
.btn-gradient.cyan {
	background: #389FFF;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(27, 188, 194, 1)),
		to(rgba(24, 163, 168, 1)));
	background: -webkit-linear-gradient(rgba(27, 188, 194, 1) 0%,
		rgba(24, 163, 168, 1) 100%);
	background: -moz-linear-gradient(rgba(27, 188, 194, 1) 0%,
		rgba(24, 163, 168, 1) 100%);
	background: -o-linear-gradient(rgba(27, 188, 194, 1) 0%,
		rgba(24, 163, 168, 1) 100%);
	background: linear-gradient(#389FFF 0%,
		#389FFF 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1bbcc2',
		endColorstr='#18a3a8', GradientType=0);
}

.btn-gradient.cyan:active {
	background: #169499;
}

.login_input {
	border-radius: 4px;
	box-shadow: none;
	border: 1px solid #d7dde4;
	height: 30px;
}

.login_input:focus {
	box-shadow: none;
	outline: 0;
}

body {
	color: #657180;
	font-size: 14px;
}

.btn-gradient {
	padding: 4px 18px !important;
}