* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 12pt;
}

body {
  background-color: #221B35;
  background-image: none;
}

#admin_wrapper {
  background-color: #FFF;
  border: 2px solid #ffffff;
  margin: 100px auto;
  width: 600px;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#logo {
  width: 300px !important;
  height: 130px !important;
  background: url('https://www.burwood.nsw.gov.au/files/sharedassets/public/enfield-aquatic-centre/eac-splash.png?w=848&h=404') no-repeat;
  background-size: 300px auto;
  margin: -50px 0 50px 50px;
}

/* LOGIN FORM */

form {
  display: flex;
  flex-direction: column;
}

form p {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

form label {
  color: #221C35;
  margin-bottom: 7px;
  text-align: left;
  font-size: 1.2em;
  letter-spacing: 0.5pt;
  font-weight: 600;
}

form .input {
  border: 2px solid #221C35;
  border-radius: 5px;
  height: 48px;
  width: 270px;
  text-align: center;
  background-color: white;
  outline: none;
  font-size: 1em;
  color: #333333;
}

/* AUTOCOMPLETE */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: 2px solid #221C35;
	-webkit-text-fill-color: black;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	transition: background-color all 300ms ease-out 0s;
}


.forgot_password p {
  text-align: center;
  margin-top: 20px;
}

.forgot_password p a {
	order: 2;
	margin-top: 30px;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 1em;
	font-weight: 600;
	color: #221C35;
}

.forgot_password p a:hover {
	text-decoration: underline;
}

form .button {
  border: none;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 20px;
  height: 60px;
  background-color: #221C35;
  color: #FFF;
  letter-spacing: 0.5pt;
  font-size: 1.1em;
  font-weight: 600;
}

form .button:hover {
  background-color: #4F9FA6;
  transition: all 300ms ease-out 0s;
  color: #221C35;
  cursor: pointer;
}

.success, .fail, .information, .attention {
	position: relative;
	top: 12px;
	text-transform: uppercase;
	font-size: 0.9em;
	background-color: #00ffff00;
	border: 0px solid;
}

.success {
	color: #090;
	position: relative;
    top: -20px;
}

.fail {
	color: red;
	position: relative;
    top: -20px;
}

.information {
	color: #03F;
	position: relative;
    top: -20px;
}

.attention {
	color: #C69E00;
	position: relative;
    top: -20px;
}