/* =============================================
   Pine Ridge Ranch – Login / Reset Password Page
   ============================================= */

/* Page background */
body.login {
  background-color: #f5f0e8 !important;
  font-family: Georgia, 'Times New Roman', serif !important;
}

/* Hide the default WordPress logo link */
body.login #login h1 a {
  background-image: none !important;
  background-color: transparent !important;
  width: 100% !important;
  height: 80px !important;
  display: block !important;
  text-indent: 0 !important;
  overflow: visible !important;
  font-family: Georgia, serif !important;
  font-size: 22px !important;
  color: #2c5f2e !important;
  text-align: center !important;
  line-height: 80px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  letter-spacing: 1px !important;
}

/* Replace logo with site name text */
body.login #login h1 a::before {
  content: 'Pine Ridge Ranch' !important;
  display: block !important;
  color: #2c5f2e !important;
  font-size: 24px !important;
  font-family: Georgia, serif !important;
  font-weight: bold !important;
  letter-spacing: 1px !important;
  text-align: center !important;
}

/* Login box */
body.login #loginform,
body.login #lostpasswordform,
body.login #resetpassform {
  background: #ffffff !important;
  border: 1px solid #d8cfc0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  padding: 30px 30px 20px !important;
}

/* Labels */
body.login label {
  color: #3a3a3a !important;
  font-family: Georgia, serif !important;
  font-size: 14px !important;
}

/* Input fields */
body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
  background: #faf8f4 !important;
  border: 1px solid #c8bfb0 !important;
  border-radius: 4px !important;
  color: #333 !important;
  font-size: 15px !important;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus,
body.login input[type="email"]:focus {
  border-color: #2c5f2e !important;
  box-shadow: 0 0 0 2px rgba(44, 95, 46, 0.15) !important;
  outline: none !important;
}

/* Submit button */
body.login .button-primary,
body.login input[type="submit"] {
  background: #2c5f2e !important;
  border: none !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  font-family: Georgia, serif !important;
  font-size: 15px !important;
  font-weight: bold !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.login .button-primary:hover,
body.login input[type="submit"]:hover {
  background: #1a3d1c !important;
  border: none !important;
}

/* Links */
body.login #nav a,
body.login #backtoblog a {
  color: #2c5f2e !important;
  font-family: Georgia, serif !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
  color: #1a3d1c !important;
  text-decoration: underline !important;
}

/* Nav container */
body.login #nav {
  text-align: center !important;
  padding: 8px 0 !important;
}

/* Message box */
body.login .message,
body.login p.message {
  background: #eef4ee !important;
  border-left: 4px solid #2c5f2e !important;
  border-radius: 4px !important;
  color: #2c5f2e !important;
  font-family: Georgia, serif !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  margin-bottom: 16px !important;
  position: relative !important;
  z-index: 2 !important;
  clear: both !important;
}

/* Error messages */
body.login #login_error {
  background: #fff3f3 !important;
  border-left: 4px solid #cc0000 !important;
  border-radius: 4px !important;
  color: #cc0000 !important;
  font-family: Georgia, serif !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
}

/* Privacy policy link */
body.login .privacy-policy-page-link {
  text-align: center !important;
}

body.login .privacy-policy-page-link a {
  color: #2c5f2e !important;
  font-size: 12px !important;
}

/* Remove Powered by WordPress */
body.login #backtoblog {
  display: none !important;
}