/* MAITLAND LOGIN */


@import url('https://fonts.googleapis.com/css?family=Lato:400,700%7COpen+Sans:300,400,400i,600,700');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'open Sans' !important;
	font-size: 12pt;
}

body {
    background: #5851510f;
    background-image: url("https://secure.activecarrot.com/media/dynamic/static_images/1331/indoor-pool.jpg");
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    background-position: top center;
    overflow-x: hidden;
}


#admin_wrapper {
  background-color: #fdfdfd;
  border: 2px solid #ffffff;
  margin: 100px auto;
  width: 500px;
  height: auto;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 5px !important;
}

#admin_wrapper h2 {
	color: #000;
	text-align: center;
    margin-left: 20px;
    margin-bottom: 30px;
}

#logo {
  width:400px;
  height:100px;
  background-image: url('https://secure.activecarrot.com/media/dynamic/static_images/1331/Landscape-Logo_Achieving (Small).png');
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: center center;
  display: block;
  margin: 0 0 0 0;
}

/* LOGIN FORM */
.customer_login_message {
	font-weight: bold;
	margin-bottom: 50px;
	color: #646161;
	width: 400px;
	text-align: center;
	font-size: 1.2em;
}

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

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

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

form .input {
  border: 0px solid #d2b996 !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0px;
  height: 38px;
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: white;
  outline: none;
  font-size: 0.85em;
  color: #333333;
}

#admin_wrapper > form > div {
    width: 100vw;
    margin-left: auto;
    margin-right: 20px;
    position: relative;
    /* top: 75px; this was breaking the form */
}

/* 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 #d2b996;
	-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: #00a1e4;
}

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

#button {
    display: grid;
    grid-area: bottom;
    width: 70vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    border-radius: 35px;
    border: 0px;
    height: 55px;
    margin-top: 0px;
    background: #4e6496  !important;
    background-color: #4e6496  !important;
    font-size: 1.1em;
}

#button:hover {
    cursor:pointer;
    background:#92C2DD !important;
    transition: ease-out 0.3s;
}

form .button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: 1px 1px 5px rgba(1, 1, 0, .7);
}

div#login_footer {
    /* display: block; */
    position: absolute;
    top: 100px;
    left: 0px;
    width: 100vw;
    background: #d9d9d9;
    text-align: center;
    padding: 2.0em;
}


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

.success {
	color: #090;

}

.fail {
	color: red;
}

.information {
	color: #03F;
}

.attention {
	color: #C69E00;
}

@media all and (max-width: 580px) {
	#admin_wrapper {
		width: 100vw;
	}
	#logo {
		position: relative;
		margin: 0px !important;
		padding: 0px;
	}
}