.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.auth-logo {
  text-align: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.auth-title {
  text-align: center;
  margin-bottom: 6px;
}

.auth-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
}

.auth-link {
  font-size: 12px;
  color: var(--violet);
}