*/html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}



* {
  	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: #435165;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	margin: 30px auto;
	border: 3px solid #4a89bc; 
	border-radius: 15px;
}

.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 10px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #4a89bc;
  	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="list"]{
  	width: 360px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}

.login textarea {
  	width: 360px;
  	height: 100px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
	color: #4a89bc;
}
.login form input[type="submit"] {
  	width: 100%;
	width: 360px;
  	padding: 15px;
 	margin-top: 10px;
  	background-color: #4a89bc;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
	
}
.login form input[type="submit"]:hover {
	background-color: #7193bd;
  	transition: background-color 0.2s;
}

.login a {
	margin: 30px;
	text-decoration: none;
	color: #7193bd;
}

.login p {
	margin:15px;
	text-align: center;
	
}

.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 20px;
  	padding: 10px 0 10px 0;

}

.login h3 {
	display: block;
	width: 360px;
	margin: auto;
  	text-align: center;
  	color: #4a89bc;
  	font-size: 16px;
  	padding: 5px;
	border-bottom: 1px solid #4a89bc;
	border-top: 1px solid #4a89bc;

}

.login h4 {
  	text-align: left;
  	color: #4a89bc;
  	font-size: 14px;
  	margin-left: 20px;

}

#myUL li b{
	font-weight: bold;
}

#myUL {
    
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#myUL li a {
    display: block;
	width: 340px;
	border: 0px solid #ddd; 
    margin-top: -1px; 
	padding: 4px; 
    text-decoration: none; 
    font-size: 14px; 
    
}

#myUL li a:hover:not(.header) {
    background-color: #89c0cd; 
	color: gray;
}

#commentscroll {
  border: 1px solid #dee0e4;	
  height:160px;
  width: 360px;
  overflow:auto;  
  margin:0;
  
  
} 


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
	.login {
		width: 100%;
		margin: 0;
		border: 0;
		border-radius: 0px;
	}
	body {
		background-color: #fff;
	}
}