.auth-tabs{
  display:flex;
  gap:8px;
  background:#f3f4f6;
  border-radius:12px;
  padding:6px;
  margin: 6px 0 14px;
}

.auth-tab{
  flex:1;
  border:0;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
  background:transparent;
  font-weight:700;
  color:#111827;
}

.auth-tab.active{
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.auth-label{
  font-size:13px;
  color:#374151;
  font-weight:700;
  margin-top:6px;
}

.auth-input{
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}

.auth-input:focus{
  border-color:#111827;
}

.auth-submit{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:#0b1220;
  color:#fff;
  font-weight:800;
  font-size:14px;
  margin-top:10px;
}
