/* BH Login – White-label Design */
body.bh-login{
  min-height:100vh;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(34,113,177,.14), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(0,160,210,.12), transparent 55%),
              #f3f5f7;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:#1d2327;
}
.bh-login-shell{
  width:100%;
  padding:24px;
  display:flex;
  justify-content:center;
}
.bh-login-card{
  width:min(440px, 92vw);
  background:#fff;
  border:1px solid rgba(28,31,35,.10);
  border-radius:18px;
  padding:26px 24px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}
.bh-login-brand{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:16px;
}
.bh-login-mark{
  width:46px;
  height:46px;
  border-radius:14px;
  background: linear-gradient(135deg, #2271b1, #00a0d2);
  box-shadow: 0 10px 24px rgba(34,113,177,.25);
}
.bh-login-card h1{
  margin:0;
  font-size:20px;
  line-height:1.25;
  letter-spacing:.2px;
}
.bh-sub{
  margin:4px 0 0;
  color:#50575e;
  font-size:13px;
  line-height:1.4;
}

/* WordPress login form inside our page */
.bh-login #loginform{
  margin:14px 0 0;
}
.bh-login #loginform p{
  margin:0 0 12px;
}
.bh-login #loginform label{
  font-weight:600;
  font-size:13px;
  color:#2c3338;
}
.bh-login #loginform .input,
.bh-login #loginform input[type="text"],
.bh-login #loginform input[type="password"]{
  width:100%;
  border:1px solid rgba(28,31,35,.18);
  border-radius:12px;
  padding:11px 12px;
  font-size:14px;
  line-height:1.3;
  background:#fff;
  box-shadow:none;
}
.bh-login #loginform .input:focus,
.bh-login #loginform input[type="text"]:focus,
.bh-login #loginform input[type="password"]:focus{
  border-color:#2271b1;
  outline:none;
  box-shadow: 0 0 0 3px rgba(34,113,177,.15);
}
.bh-login #loginform input[type="submit"]{
  width:100%;
  border:0;
  border-radius:12px;
  padding:11px 14px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  background: linear-gradient(135deg, #2271b1, #00a0d2);
  color:#fff;
}
.bh-login #loginform input[type="submit"]:hover{
  filter: brightness(1.03);
}
.bh-login #loginform .forgetmenot{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#50575e;
  margin-top:2px;
}
.bh-login #loginform .forgetmenot input{
  margin:0;
}
.bh-login #login_error,
.bh-login .message{
  border-radius:12px;
  padding:10px 12px;
  margin:0 0 12px;
}
.bh-login-foot{
  margin-top:14px;
  color:#7a828a;
}
