.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.08), transparent 45%), var(--bg);
}

.auth-card {
  width: 360px;
  max-width: 90vw;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(15, 27, 45, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  text-align: center;
}

.auth-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.auth-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.btn-google {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.divider {
  color: var(--text-dim);
  font-size: 12px;
  margin: 18px 0;
}

.field {
  margin-bottom: 14px;
  text-align: left;
}

.field label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.6);
  color: var(--text);
  font-size: 14px;
  outline: none;
}

.field input:focus { border-color: var(--accent); }

.btn-primary {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #04121f;
  font-weight: 600;
  font-size: 14px;
}

.btn-secondary {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  margin-top: 10px;
}

.found-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.found-account img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 420px) {
  .auth-card { padding: 24px 18px; width: 94vw; }
  .auth-title { font-size: 18px; }
}
