* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
/*  	font-size: 16px;*/
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #4a536e;
}

.forms {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    border: 1px;
    border-radius: 10px;
  	margin: 50px auto;
}
.forms-content {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.forms h1 {
  	text-align: center;
  	color: #dcdcdc;
  	font-size: 20px;
  	padding: 10px 0 10px 0;
  	border: 1px solid #2f3947;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#2f3947;
}
.forms-content label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 40px;
  	height: 40px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.forms-content input[type="password"], .forms-content input[type="text"] {
  	width: 330px;
  	height: 40px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.forms-content input[type="button"] {
  	width: 50%;
  	padding: 7px;
 	margin-top: 15px;
    margin-bottom: 15px;
  	background-color: #3274d6;
  	border: 1px;
    border-radius: 10px;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.forms-content input[type="button"]:hover {
	background-color: #598ddd;
  	transition: background-color 0.2s;
}

.navtop {
	background-color: #2f3947;
	height: 60px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 0 auto;
	width: 1000px;
	height: 100%;
}
.navtop div h1, .uc-navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 28px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: bold;
}
.navtop div a {
	padding-top: 18px;
	padding-left: 20px;
	padding-right: 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 8px 0 0;
}
.navtop div a:hover {
	color: #eaebed;
}

.content {
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    border: 1px;
    border-radius: 10px;
	width: 1000px;
	
	margin: 50px auto;
}
.content > div#panel {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 0px;
    
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.content h2 {
    text-align: center;
    color: #dcdcdc;
  	font-size: 20px;
    padding: 10px 0 10px 0;
    border: 1px solid #2f3947;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#2f3947;

    margin: 0;
}
.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 0px 0;
	padding: 15px 25px 15px 25px;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.content > p table td, .uc-content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

.content input[type="button"] {
  	width: 125px;
  	padding: 7px;
 	margin-top: 15px;
    margin-bottom: 5px;
  	background-color: #3274d6;
  	border: 1px;
    border-radius: 10px;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.content input[type="button"]:hover {
	background-color: #598ddd;
  	transition: background-color 0.2s;
}

