* {
  	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: #c9c6c5;
	max-width: 500px;  // added 7/20/2020
	
}

/* Dropdown Button */
.dropbtn {
  background-color: #c9c6c5;
  color: white;
  padding: 5px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background-image: url('golfbag_menu_32_32.png'); /* changed from bar.png 7/21/2020 */
  background-size: cover; 
  width: 35px; 
  height: 35px; 
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: relative;
/*	right: 0;
  top: 10px; */
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}


.login h1 {
  	text-align: center;
  	color: #3274d6;
  	font-size: 24px;
  	padding: 0px 0 10px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login h2 {
  	text-align: left;
  	color: green;
  	font-size: 12px;
  	padding: 0px 0 0px 0;
  	
}
.login h3 {
  	text-align: left;
  	color: #3274d6;
  	font-size: 16px;
  	padding: 0px 0 0px 0;
  	
}
.login form {
  	/* display: flex; */
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 5px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"], .login form input[type="email"] {
  	border-radius: 05px;
	width: 100%;
  	height: 35px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
	margin-top: -10px;
  	padding: 0 15px;
}
.login form input[type="submit"], .login form input[type="button"] {
  	border-radius: 25px;
	width: 100%;
	height: 35px;
  	padding: 05px; /* was 15px */
 	margin-top: 20px;  
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover, .login form input[type="button"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}
a.disabled {
  		color: lightgray;
	}
.hyp_txt {
	text-align:center;
	display:block;
	padding: 25px 0px 25px 0px;
	font-size: 18px;
	color: tomato;
	}
#msg_bar {
			padding: 10px 0px 10px 0px;
			width: 100%;
			display:none; 
			font-size: 1em;
			font-family: "Georgia", Times, serif;
			color: rgb(40, 40, 40);
		}
.error{background-color: #fc9f97;  margin-top: 5px;}
.success{background-color: #e5fca4; margin-top: 5px; }