/* PLab Member Gate — public.css (fixed: no eye toggle, no wrapper hacks) */

/* Card look */
.plab-form.plab-card{
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  border-radius:16px;
  padding:24px;
  margin:0 auto !important;
  width:100%;
  max-width:600px;
}

/* Labels */
.plab-card label{
  font-weight:600;
  color:#111;
  margin:14px 0 6px;
  display:block;
}

/* Inputs */
.plab-card input[type="text"],
.plab-card input[type="email"],
.plab-card input[type="password"]{
  width:100%;
  height:48px;
  border:1px solid #dcdcdc;
  border-radius:12px;
  padding:0 14px;
  outline:0;
  font-size:16px;
  line-height:1;
  box-sizing:border-box;
  background:#fff;
  color:#111;
}

/* Submit button */
.plab-card button{
  width:100%;
  height:50px;
  border-radius:12px;
  background:#111;
  color:#fff;
  font-weight:700;
  border:0;
  margin-top:16px;
  cursor:pointer;
  font-size:16px;
}

/* Forgot link */
.plab-card .plab-forgot{
  margin-top:10px;
  text-align:right;
  font-size:13px;
}

/* Messages */
.plab-errors{ background:#ffe9e9; border:1px solid #ffbdbd; padding:10px; border-radius:10px; }
.plab-success{ background:#eaffea; border:1px solid #bdeabd; padding:10px; border-radius:10px; }

/* Typography for forms */
.plab-form.plab-card{
  font-family: "Inter", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Members Only box */
.plab-gate{
  padding:24px;
  border:1px solid #eee;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  border-radius:16px;
  background:#fafafa;
  position:relative;
  z-index:20;
  pointer-events:auto;
  width:100%;
  max-width:600px;
  margin:auto auto !important;
  font-family:"Inter", system-ui, Arial, sans-serif;
  font-size:16px;
  color:#1a1a1a;
}
.plab-gate h3{ font-size:28px; font-weight:600; color:#111; margin:0 0 8px; }
.plab-gate p{ font-size:16px; font-weight:500; color:#252525; margin:0 0 12px; }
.plab-gate a{ color:#111; font-weight:700; text-decoration:underline; }

/* Footer banner for notices */
.plab-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  max-width:660px; margin:0 auto;
  background: rgba(30, 30, 30, 0.8);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  padding:12px 14px; border-radius:10px;
  z-index:9999;
  text-align: center !important;
}
.plab-banner p{ margin:0 0 6px; }
.plab-banner .plab-resend{ font-weight:600; text-decoration:underline; }

/* Prevent iOS zoom-on-focus */
/*@media (max-width:480px){
  .plab-card input{ font-size:16px !important; }
}*/

/* Font override */
:root { --plab-font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

.plab-form.plab-card,
.plab-gate,
.plab-banner {
  font-family: var(--plab-font) !important;
}

/* Make inner bits inherit */
.plab-card label,
.plab-card input,
.plab-card button,
.plab-card .plab-forgot {
  font-family: inherit !important;
}

/* Increase input text size for mobile devices */
@media (max-width: 768px) {
  .plab-card input[type="text"],
  .plab-card input[type="email"],
  .plab-card input[type="password"] {
    font-size: 18px !important; /* Adjust this value as you like (16–20px is comfortable) */
    height: 54px !important; /* Optional: slightly taller field for easier tap */
  }
}
