.auth-wrap{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card{
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.auth-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 16px 0 6px;
}

.auth-input{
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.auth-input:focus{ border-color: var(--teal); }

.auth-error{
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(242,119,122,0.12);
  border: 1px solid rgba(242,119,122,0.3);
  color: var(--red);
  font-size: 13.5px;
}

.auth-switch{
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
}

.auth-switch a{ color: var(--teal); text-decoration: none; font-weight: 600; }
.auth-switch a:hover{ text-decoration: underline; }

.auth-tabs{
  display: flex; gap: 6px; background: var(--surface-2);
  border-radius: 10px; padding: 4px; margin-bottom: 4px;
}
.auth-tab{
  flex: 1; background: none; border: none; color: var(--text-muted);
  font-size: 13.5px; font-weight: 600; padding: 8px 0; border-radius: 8px;
  cursor: pointer; transition: background .2s, color .2s;
}
.auth-tab.active{ background: var(--surface); color: var(--text); }
