/* Auth page patch (copy/paste compatibility)
   - Restores form/button styling for auth pages that use .field + .btn classes
   - Restores footer styling on auth pages (footer CSS is placed in app.css)
   Do not redesign. */

.auth-form-panel{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form-title{
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: rgba(15,23,42,0.90);
}

.form{
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

label.field{
  display:block;
}

label.field > span{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(15,23,42,0.80);
  margin-bottom: 6px;
}

label.field input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(248,250,252,0.95);
  padding: 12px 12px;
  outline: none;
  color: #0f172a;
  font-size: 13px;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

label.field input::placeholder{ color: rgba(148,163,184,0.85); }

label.field input:focus{
  border-color: rgba(0,190,110,0.70);
  box-shadow: 0 0 0 4px rgba(0,190,110,0.22);
  background: #fff;
}

/* Buttons – match your existing dashboard/wallet button look */
.btn{
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.btn.btn-primary{
  color: #022c22;
  background: linear-gradient(135deg, var(--green), rgb(0,230,130));
  box-shadow: 0 10px 24px rgba(0,190,110,0.35);
}

.btn.btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* Links row */
.form-links{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-links a{
  font-size: 13px;
  font-weight: 800;
  color: rgba(15,23,42,0.76);
  text-decoration: none;
}
.form-links a:hover{ color: rgba(0,190,110,0.95); }
