/* Load Fonts */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

body.login {
  background: #f9fafc;
  font-family: Montserrat, sans-serif;
}

/* Centre and Style the Login Box */
.login form {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
  font-family: Montserrat, sans-serif;
}

/* Style Headings */
.login h1 a {
  background-image: url("/wp-content/themes/passphysio2/assets/svg/main-logo.svg");
  background-size: contain;
  width: 320px;
  height: 80px;
  pointer-events: none;
}

.login h1 {
  margin-bottom: 20px;
}

.login label {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* Style Inputs */
.login form input[type="text"],
.login form input[type="password"] {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #049f82;
}
.login form input[type="text"]:focus,
.login form input[type="password"]:focus {
  border-color: #049f82;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
  outline: none;
  transition: all 0.2s ease;
}

/* Login Button */
.login form input[type="submit"] {
  background: #049f82;
  border: none;
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login form input[type="submit"]:hover {
  background: #02856c;
}

/* Message / Error Styling */
.login .message,
.login .error {
  border-left: 4px solid #0057b8;
  background: #e9f1fb;
  padding: 12px;
  font-family: Quicksand, sans-serif;
}

/* Back to site / lost password links */
.login #nav,
.login #backtoblog {
  font-family: Quicksand, sans-serif;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.login #nav a,
.login #backtoblog a {
  color: #231f20;
  font-weight: 600;
}

.login #nav a:hover,
.login #backtoblog a:hover {
  color: #049f82;
  transition: color 0.3s ease;
}

/* Beta: hide "Lost your password?" and "← Go to Pass Physio" links */
.login #nav,
.login #backtoblog {
  display: none;
}

/*Hide the Language Switcher */
#language-switcher {
  display: none;
}

/*Dashicons Icon Adjustments*/
.dashicons-visibility:before {
  color: #049f82;
  font-size: 22px;
  transition: color 0.3s ease;
}

.dashicons-hidden:before {
  color: #231f20;
  font-size: 22px;
  transition: color 0.3s ease;
}

/*Hide the Blue Focus Box - dashicon eye and checkbox*/
.login .button.wp-hide-pw:focus {
  visibility: hidden;
}

input[type="checkbox"]:focus {
  display: none;
}
