/* Hide the default WordPress logo */
body.login h1 a {
  display: none !important;
}

/* Center and style the login form container */
body.login #login {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* Style input fields */
body.login #loginform .input {
  width: 100% !important;
  padding: 10px !important;
  margin-bottom: 15px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box;
}

/* Style the primary button with a blue gradient */
body.login #loginform .button-primary {
  background: linear-gradient(45deg, #0073aa, #005f8e) !important;
  border: none !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-weight: bold !important;
  padding: 12px 20px !important;
  text-decoration: none !important;
  transition: background 0.3s, color 0.3s !important;
}

/* On hover, change text to orange */
body.login #loginform .button-primary:hover {
  background: linear-gradient(45deg, #005f8e, #0073aa) !important;
  color: #ff6600 !important;
}

/* Center notices */
body.login .message,
body.login .login-error {
  text-align: center !important;
}
