/* Visual-only sign-in page (no real authentication). */
:root{
  --card-w: 380px;
  --border: #e8e8e8;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --link: #1a73e8;
  --green: #2e7d32;
  --bg: #ffffff;
  --shadow: 0 10px 28px rgba(0,0,0,.10);
  --radius: 12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: 44px 16px 30px;
}

.card{
  width:100%;
  min-height: auto;
  max-width: var(--card-w);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow);
  background:#fff;
}

.brand{
  display:flex;
  justify-content:center;
  margin: 2px 0 16px;
}
.brand__img{
  height: 26px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}

.title{
  margin: 0 0 24px;
  text-align:center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1px;
}

.tabs{
  display:flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.tab{
  flex: 1;
  appearance:none;
  background: transparent;
  border: 0;
  padding: 12px 0 12px;
  cursor:pointer;
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 500;
  position: relative;
  text-align: center;
}
.tab.is-active{
  color: #1f1f1f;
}
.tab.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:3px;
  background: var(--green);
  border-radius: 3px;
}

.form{ display:block; }

.pane{ margin: 14px 0 18px; }
input[type="text"], input[type="tel"]{
  width:100%;
  height: 42px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  outline: none;
  background:#fff;
}
input:focus{
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,.15);
}

.remember{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: #3f3f3f;
  margin: 10px 0 22px;
  user-select:none;
}
.remember input{
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.btn{
  width:100%;
  height: 48px;
  background: var(--green);
  border: 0;
  border-radius: 4px;
  color:#fff;
  font-size: 15px;
  font-weight: 600;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.btn:hover{ filter: brightness(.97); }
.btn:active{ transform: translateY(1px); }


.fineprint, .create, .captcha{
  text-align:center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 14px 0 0;
}
.create{ margin-top: 10px; }

.divider{
  height: 1px;
  background: #efefef;
  margin: 16px 0 10px;
}

.captcha{
  margin-top: 6px;
  font-size: 11.5px;
  color: #7a7a7a;
}

a{
  color: var(--link);
  text-decoration:none;
}
a:hover{ text-decoration: underline; }

.footer{
  margin-top: 26px;
  max-width: 1000px;
  text-align:center;
  font-size: 12px;
  color: #6a6a6a;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  padding: 0 10px;
}

.footer__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 18px 22px;
}

.footer__note{
  margin: 6px 0 0;
  line-height: 1.45;
  max-width: 980px;
}
.footer__copy{
  margin: 0;
  color: #7a7a7a;
}

.is-hidden{ display:none !important; }
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
}

@media (max-width: 420px){
  .card{ padding: 26px 18px 18px; }
  .tabs{ gap: 16px; }
}


/* Lock icon to match reference (outline + keyhole) */
.btn__lock{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.95);
  margin-right: 2px;
}
.btn__lock svg{ display:block; }


.consent-note{
  margin: -10px 0 14px;
  font-size: 11.5px;
  color: #7a7a7a;
  text-align: left;
}
