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

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

#admin_wrapper {
  background-color: #FFF;
  border: 2px solid #F18700;
  margin: 25px auto;
  width: 800px;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: none;
}

#logo {
  width:500px;
  height:150px;
  background:url('https://secure.activecarrot.com/media/dynamic/configuration_images/1525747672_1121.png') no-repeat center;
  background-size: 400px;
  display: block;
  margin: -100px 0 0 0;
}

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

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

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

form .input {
  border: 2px solid #F08700;
  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 #F08700;
	-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: #F08700;
}

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

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

form .button:hover {
  background-color: #F08700;
  text-decoration: underline;
  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;
}

.customer_login_message {
	margin: 20px auto;
	width: 600px;

}

#admin_wrapper > div.customer_login_message > blockquote > p:nth-child(1) {
	text-align: center;
}