body {
  /* Futuristic WordPress Login Styling */
  /* 1. Reset and Basic Body Styling */
  /* 2. Container Styling */
  /* 3. WordPress Logo (Link) */
  /* 4. Form Input Fields */
  /* 5. Labels */
  /* 6. "0 0 283.5 283.5"0 Checkbox */
  /* 7. Submit Button */
  /* 8. "Lost Password" and "Back to..." Links */
  /* 9. Remove the screen reader text*/
  /* 10. Password strength meter*/
  /*  Debugging: Add this temporarily to visualize containers */
  /*
#login , .wp-pwd , #user_pass{outline: 1px solid red;
}
.wp-hide-pw{outline: 1px solid blue;
}
*/
}
body body.login {
  background-color: #0e1116;
  font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Keep this for centering */
  color: #f0f0f0;
  margin: 0;
  /* Add this to remove default body margin */
  padding: 0;
  /* Add this to remove default body padding */
}
body #login {
  background-color: #1a202c;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 40px;
  width: 350px;
  max-width: 90%;
  box-sizing: border-box;
  position: relative;
  /*  Important: Add this for the button positioning */
}
body .wp-login-logo a {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns=PRESERVER--M1-0 viewBox=PRESERVER--M1-1><path fill=PRESERVER--M1-2 d=PRESERVER--M1-3/><path fill=PRESERVER--M1-4 d=PRESERVER--M1-5/></svg>');
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center;
  height: 80px;
  width: 100%;
  display: block;
  margin: 0 auto 30px;
  text-indent: -9999px;
}
body .wp-login-logo {
  width: auto;
}
body #loginform input[type="text"],
body #loginform input[type="password"] {
  background-color: #2a3342;
  border: none;
  border-radius: 6px;
  color: #f0f0f0;
  padding: 15px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
  outline: none;
  /* Remove any default padding/margin , just in case */
}
body #loginform input[type="text"]:focus,
body #loginform input[type="password"]:focus {
  border-color: #00a0d2;
  box-shadow: 0 0 5px #00a0d2;
}
body #loginform label {
  color: #ccc;
  display: block;
  margin-bottom: 5px;
}
body .forgetmenot {
  display: flex;
  align-items: center;
}
body .forgetmenot label {
  margin-bottom: 0;
  margin-left: 5px;
}
body #rememberme {
  margin: 0;
  accent-color: #00a0d2;
}
body #wp-submit {
  background-color: #00a0d2;
  border: none;
  border-radius: 6px;
  color: #fff;
  padding: 15px 20px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body #wp-submit:hover {
  background-color: #0073aa;
}
body #nav,
body #backtoblog {
  text-align: center;
  margin-top: 20px;
}
body #nav a,
body #backtoblog a {
  color: #00a0d2;
  text-decoration: none;
  transition: color 0.3s ease;
}
body #nav a:hover,
body #backtoblog a:hover {
  color: #0073aa;
  text-decoration: underline;
}
body .screen-reader-text {
  display: none;
}
body .wp-pwd {
  position: relative;
  /*  Crucially important for positioning the button */
  display: flex;
  /* Use flexbox to manage layout within .wp-pwd */
}
body .wp-hide-pw {
  position: absolute;
  /* Absolute positioning within .wp-pwd */
  right: 10px;
  /* Consistent right spacing */
  top: 50%;
  /* Vertically center */
  transform: translateY(-50%);
  /*  Perfect vertical centering */
  border-radius: 6px;
  background-color: #00a0d2;
  color: white;
  border: none;
  padding: 5px;
  z-index: 2;
  /* Ensure button is above input field */
  /* Reset any potential inherited styles */
  margin: 0;
  font-size: inherit;
  /* Match input field font size if needed */
}
body .wp-hide-pw:hover {
  background-color: #0073aa;
}
body .dashicons-visibility:before {
  color: white;
}
body > #login .user-pass-wrap {
  margin-top: 0px;
}
#login > #loginform > .user-pass-wrap .button {
  padding-bottom: 0px;
  padding-top: 33px;
}
body > #login > #loginform #wp-submit {
  height: auto;
  text-align: center;
  text-decoration: none;
  font-style: normal;
  text-shadow: none;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  border: none;
  font-weight: bold;
  padding: 0.7vw 2vw;
  text-transform: uppercase;
  border: 0 solid #256fc6;
  background: #4289dc;
  border-bottom-width: 5px;
  border-radius: 5px 5px 7px 7px;
  color: rgba(255, 255, 255, 0.7);
}
body > #login > #loginform #wp-submit:before,
body > #login > #loginform #wp-submit:after {
  display: none;
}
body > #login > #loginform #wp-submit:active {
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  body > #login > #loginform #rememberme {
    padding-bottom: 0px;
    margin-bottom: 6px;
  }
}
