@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
body {
  -webkit-print-color-adjust: exact !important;
    background: #8e9eab;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}



.styled-table {
    border-collapse: collapse;;
    margin: 25px auto;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 1000px;
    max-width: 1000px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #39536C;
    color: #ffffff;
    text-align: left;
}

.styled-table th, .styled-table td {
    padding: 5px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
        
.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 4px solid #39536C;
    border-top: 4px solid #39536C;
}

.container{
    background-color: #fff;
    margin: auto;
    width: 1000px;
    padding-bottom: 25px;
    border: 1px solid #39536C;
    
}

.header{
    background-color: #39536C;
    margin: 0;
}

.menu
	{
		margin-left: 30px;
		margin-bottom: 1em;
		overflow: hidden;
		/*width: 460px;*/
	}

.menu li
	{
		border-left: 1px solid #ccc;
		/*float: left;*/
		/*line-height: 1.5em;*/
		padding: 5px;
	}

.menu li a:link {
    padding: 5px;
    text-decoration: none;
    color: #39536C;
}

.menu li a:visited {
    text-decoration: none;
    color: #39536C;
}

.menu li a:hover {
    color: white;
    background-color: #39536C;
}


h1{
    text-align: center;
}

.toptext{
    color: white;
    float: right;
    padding: 35px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
}

.cent{
    color: white;
    font-size: 15px;
    margin-right: 150px;
    }

.msg{color: red;text-align: center;}
a {text-decoration: none;}

#lnk{color: #c1B692;}
#lnk:hover{color: white;}

.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #39536c;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #39536c;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #39536c;
  	transition: background-color 0.2s;
  	color: red;
}
