/* auth-pro.css — shared auth page utilities */
/* Visual design is handled by each page's inline <style> block.
   This file provides minimal shared classes to avoid 404s. */

.auth-page { min-height: 100vh; }

.auth-shell {
  position: relative;
  z-index: 10;
}

.auth-card {
  width: 100%;
}

.auth-form {
  width: 100%;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(148, 163, 184, .8);
  text-decoration: none;
  transition: color .2s;
}
.auth-back-link:hover {
  color: #38bdf8;
}

.auth-submit {
  cursor: pointer;
}
