/* WordPress-style login page */
body.login-page {
  background: #f0f0f1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
  max-width: 400px;
}

.login-logo {
  text-align: center;
  margin-bottom: 20px;
}

.login-logo img {
  max-width: 84px;
  height: auto;
}

.login-form label {
  color: #3c434a;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  background: #fff;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  box-shadow: 0 0 0 transparent;
  color: #2c3338;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  min-height: 40px;
  padding: 6px 12px;
  width: 100%;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
  outline: 2px solid transparent;
}

.login-form .form-group {
  margin-bottom: 16px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 93.5%;
}

.login-form .submit-button {
  background: #2271b1;
  border: 1px solid #2271b1;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.15384615;
  margin: 0;
  min-height: 40px;
  padding: 0 12px;
  text-decoration: none;
  text-shadow: none;
  width: 100%;
  transition: all 0.3s ease;
}

.login-form .submit-button:hover,
.login-form .submit-button:focus {
  background: #135e96;
  border-color: #135e96;
}

.login-footer {
  color: #50575e;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}

.login-footer a {
  color: #2271b1;
  text-decoration: none;
}

.login-footer a:hover {
  color: #135e96;
  text-decoration: underline;
}
