/* ==========================================================================
   UKI POINTS - ESTILOS MÓDULO AUTENTICACIÓN (public/CSS/auth.css)
   ========================================================================== */

:root {
  --auth-accent: #ff2b6d;
  --auth-hover: #e01b58;
  --auth-bg-card: #ffffff;
  --auth-text-dark: #222222;
  --auth-input-bg: #ffffff;
  --auth-input-border: #e2e8f0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d0f17;
  color: var(--auth-text-dark);
}

.menu-overlay, .menu-links, .menu-item {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  pointer-events: none;
}

/* ==========================================================================
   TARJETAS Y FORMULARIOS DE ACCESO
   ========================================================================== */

.registro-card-wrapper {
  position: relative;
  background: linear-gradient(180deg, var(--auth-accent) 0%, rgba(255, 43, 109, 0.15) 100%);
  border-radius: 35px;
  padding: 24px 16px 16px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 420px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.registro-card {
  background: var(--auth-bg-card);
  border-radius: 28px;
  padding: 35px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.registro-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--auth-text-dark);
  margin-bottom: 24px;
}

.form-label-custom {
  color: var(--auth-text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: block;
}

.form-control-app {
  background-color: var(--auth-input-bg);
  border: 1.5px solid var(--auth-input-border);
  color: var(--auth-text-dark);
  border-radius: 50rem;
  padding: 12px 20px;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.form-control-app::placeholder {
  color: var(--auth-accent);
  opacity: 0.5;
}

.form-control-app:focus {
  background-color: #fff;
  border-color: var(--auth-accent);
  box-shadow: 0 0 0 4px rgba(255, 43, 109, 0.15);
  outline: none;
  color: var(--auth-text-dark);
}

.btn-app-accent {
  background-color: var(--auth-accent);
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px;
  border-radius: 50rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 43, 109, 0.35);
}

.btn-app-accent:hover {
  background-color: var(--auth-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 43, 109, 0.45);
}

.app-footer-text {
  color: #ffffff;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 18px;
  font-weight: 500;
}

.app-footer-text a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

.data-display-box {
  background-color: #f8fafc;
  border: 1px dashed var(--auth-accent);
  border-radius: 16px;
  padding: 15px;
  font-size: 0.88rem;
  word-break: break-all;
}

/* --- TÉRMINOS Y CONDICIONES --- */
.text-accent {
  color: var(--auth-accent) !important;
}

.terms-link {
  color: var(--auth-accent);
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.terms-link:hover {
  color: var(--auth-hover);
  opacity: 0.85;
}

.custom-terms-check .form-check-input {
  border-color: var(--auth-input-border);
  cursor: pointer;
}

.custom-terms-check .form-check-input:checked {
  background-color: var(--auth-accent);
  border-color: var(--auth-accent);
  box-shadow: 0 0 0 3px rgba(255, 43, 109, 0.2);
}

.custom-terms-modal {
  border-radius: 24px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 10px;
}

.custom-terms-modal .terms-section {
  background-color: #f8fafc;
  padding: 12px 14px;
  border-radius: 14px;
  border-left: 3.5px solid var(--auth-accent);
}

