/* Customizations to WordPress login page */

body.login {
	background: #E3E6E8;
	/* background: #334E68; */
	color: #333;
}


/**
 * General properties for the form
 */
 .login form {
  margin-top: 20px;
  margin-left: 0;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ABB3BA;
 }

/* Logo Goes Here */
 .login h1 a {
  background-image: url('../images/phenix-logo-teal.svg');
	background-size: contain;
  height: 96px;
  width: auto;
 }

 .welcome-message {
	/* font-weight: bold;  */
	font-size: 18px;
	text-align: center;
 }



 /**
 * The text labels for the input fields
 */
.login label {
  font-size: 12px;
  color: #72777c;
}


 /**
 * Primary style of the input fields.
 */
.login input[type="text"],
.login input[type="password"] {
  background: #E3E6E8;
  border: none;
	border-radius: 0px;
  -webkit-border-radius: 0px;
  color: #333333;
  padding: 5px 10px;
}

/**
 * This section cleans up the border/colors/action
 * when the cursor is in the input fields.
 * Customize as desired.
 */
input[type=text]:focus,
input[type=password]:focus {
  /* background: rgba(255, 255, 255, 0.06); */
}

input[type=text]:focus,
input[type=password]:focus,
input[type=checkbox]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  color: rgba(255, 255, 255, 0.2) !important;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #72777c;
}

input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
}
/**
 * End of the border/colors/action
 */

/**
 * Class forgetmenot is the "remember me" checkbox.
 */
.login form .forgetmenot {
  font-weight: 400;
  float: none;
  margin-bottom: 0;
}

#login form p.forgetmenot {
  margin: 2px 6px 16px 2px;
}

input[type=checkbox] {
  border: 1px solid #b4b9be;
  background: #fff;
  color: #555;
  clear: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  height: 16px;
  margin: -4px 4px 0 0;
  outline: 0;
  padding: 0!important;
  text-align: center;
  vertical-align: middle;
  width: 16px;
  min-width: 16px;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  -webkit-transition: .05s border-color ease-in-out;
  transition: .05s border-color ease-in-out;
}

input[type=checkbox]:focus {
  border-color: #555;
}

input[type=checkbox]:checked:before {
  font: 400 21px/1 dashicons;
  color: #000;
}
/**
 * End of the "remember me" checkbox.
 */

/**
 * This is where we style the button.
 */
body.login .button.button-large {
  height: 48px;
}

.login .button-primary {
  width: 100%;
  float: none;
  background-color:#517C8C !important;
  color: #ffffff;
	border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
	font-size: 16px; 
	/* font-weight: bold; */
	text-transform: uppercase;
}

.login .button-primary:hover {
  background-color:#4a7382 !important;
  color: #fff;
	border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
}

.login .button-primary:active {
  background-color:#4a7382 !important;
  color: #fff;
	border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.login .button-primary:focus {
  width: 100%;
  float: none;
  background-color:#517C8C !important;
  color: #ffffff;
	border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
}
/**
 * End of the button.
 */

/**
 * These are the links under the button.
 */
.login #nav,
.login #backtoblog {
  padding: 0;
}

.login #nav a,
.login #backtoblog a {
  color: #72777c;
}

.login #nav a:hover,
.login #backtoblog a:hover {
  color: #517C8C;
}

.login #login_error,
.login .message {
  border-left: 4px solid #87ACBA;
  margin-top: 12px;
}
/**
 * End of the links under the button.
 */
