/* General layout */
body.login {
  background: #f1f5f9;
  font-family: 'Inter', sans-serif;
}

/* Center login box */
body.login #login {
  width: 100%;
  max-width: 400px;
  margin: 5% auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

/* Logo */
body.login h1 a {
  background-image: url('/wp-content/themes/momekh-theme-one/images/momekh-scale-down-logo.webp');
  background-size: contain;
  background-repeat: no-repeat;
  height: 80px;
  width: 320px;
  margin-bottom: 20px;
  pointer-events: none;
}

/* Form itself */

body.login form {
  border: 0;
  box-shadow: none;
  
}


/* Form fields */
.login #wp-submit {
    background-color: #1a73e8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    
    padding: 0 24px;
    height: 40px;
   
    border-radius: 20px;
    border: none;
    box-shadow: none;
    cursor: pointer;
    text-transform: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.login #wp-submit:hover {
    background-color: #185abc;
    box-shadow:
  0px 3px 1px -2px rgba(0, 0, 0, 0.2),
  0px 2px 2px 0px rgba(0, 0, 0, 0.14),
  0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.login #wp-submit:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

body.login form {
  border: 0;
  box-shadow: none;
  
}


/* Links */
body.login #nav {
  color: #fff;
}
a.wp-login-register {
    display: none !important;
} /* REGISTER BUTTON NEEDS TO GO FROM THIS PLACE */

body.login #nav a, body.login #backtoblog a {
  color: #0b57d0;
  font-weight: 600;
  padding: 10px 24px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgb(205 223 252);
  display: inline-block;
  
}
body.login #nav a:hover, body.login #backtoblog a:hover {
  background-color:rgb(239 244 252)
  
}

body.login #nav a:focus, body.login #backtoblog a:focus {
  background-color:rgb(239 244 252);
  border: 1px solid;
  outline: 1px solid #0b57d0;
    outline-offset: 2px;
  box-shadow: none;
}

body.login #nav, body.login #backtoblog {
  font-size: 14px;
  margin-top: 1rem;
  text-align: center;
}
