@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-size: 12pt;
}

body {
  background-color: #eaeaea;
  background-image: none;
}

#admin_wrapper {
  background-color: #FFF;
  border: 2px solid #ffffff;
  margin: 100px auto;
  width: 500px;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 3px 3px 3px #d2d2d2;
}

#logo {
  width:300px;
  height: 120px;
  background: url('https://www.diamondcreekpool.com.au/wp-content/uploads/2020/09/DCOP-cropped-e1601441774536.png') no-repeat;
  background-size: 150px;
  display: block;
  margin: -52px 0 0 170px;
}

/* LOGIN FORM */
form {
  display: flex;
  flex-direction: column;
}

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

form label {
  color: #537C96;
  margin-bottom: 7px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 400;
}

form .input {
  border: 2px solid #537C96;
  border-radius: 5px;
  height: 38px;
  width: 270px;
  text-align: center;
  background-color: white;
  outline: none;
  font-size: 0.85em;
  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 #537C96;
	-webkit-text-fill-color: black;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	transition: background-color 5000s ease-in-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: 0.9em;
	font-weight: 400;
	color: #537C96;
}

.forgot_password p a:hover {
	color: #5f6e71;
	transition: 0.2s ease-in;
}

form .button {
  border: none;
  border-radius: 5px;
  margin-top: 5px;
  height: 38px;
  background-color: #537C96;
  color: #FFF;
  letter-spacing: 0.1em;
  box-shadow: 3px 3px 3px #f1f1f1;
  font-weight: 400;
}

form .button:hover {
  background-color: #5f6e71;
  transition: 0.2s ease-in;
  color: #ffffff;
  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;
}

.fail {
	color: red;
}

.information {
	color: #03F;
}

.attention {
	color: #C69E00;
}