/* =====================================================
   PÁGINA: LOGIN
   Styles de inputs/textarea están en componentes/formularios.css
   ===================================================== */
.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.auth-box {
  background: #fff;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
}

.auth-box h1 {
  margin-bottom: 20px;
  text-align: center;
}

.auth-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-primary{
  padding: 10px;
  border: none;
}
.btn-secondary{
  padding: 10px;
}
.btn-outline{
  padding: 10px;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  
}