/* auth.css */
/* Estilos exclusivos para index, login, register y forgot */

/* 1. Fondo y centrado del contenedor de autenticación */
.auth-wrapper {
  background: url('/images/bg.webp') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
}

/* 2. Caja blanca translúcida que contiene el formulario */
.auth-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin-top: 5%;
  max-width: 400px;
  width: 100%;
}

/* 3. Logo más pequeño (reuso de .logo-img de custom.css) */
/* no hace falta redeclarar */

/* 4. Evitar que #content tenga margen lateral cuando es auth-wrapper */
#content.auth-wrapper {
  margin-left: 0 !important;
  padding: 0 !important;
}
