/* Auth pages minimal mobile-app look */

/* White canvas background for these pages */
body {
  background: #ffffff;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: #ffffff;
}

.auth-card {
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px; /* más espacio antes del formulario */
}

.auth-logo img {
  max-width: 180px;
  height: auto;
}

.auth-body {
  background: transparent;
}

.auth-card .form-control {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  height: auto;
  font-size: 16px;
  color: #111827;
}

.auth-card .btn {
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 16px;
}

.auth-meta {
  margin-top: 16px;
  text-align: center;
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.75rem; /* pie más pequeño */
  color: #6b7280; /* gray-500 */
}

.auth-small {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Space between form elements */
.auth-card .form-group { margin-bottom: 14px; }

/* Alerts spacing within the compact card */
.auth-card .alert { margin-bottom: 14px; }

/* Compact checkbox label in forms */
.auth-remember {
  font-size: 0.85rem;
  margin-top: -4px;
  margin-bottom: 10px;
}

/* Ensure links look deliberate but clean */
.auth-meta a {
  text-decoration: none;
}

.auth-meta a:hover {
  text-decoration: underline;
}

/* CTA row for secondary actions below form */
.auth-cta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.auth-cta a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  color: #143353;
  background: #ffffff;
  text-align: center;
}

.auth-cta a:hover {
  text-decoration: none;
  border-color: #cbd5e1;
}
