a:link, a:visited, a:hover, a:active{
  text-decoration: none !important;
}

.rounded, .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-radius:8px !important;
}

.rounded-start,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-end,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-top,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-bottom,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

/* Contenedor de fondo para login y 404: imagen personalizada o gris por defecto */
.backgroundImage{
	width: 100%;
	min-height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   ✨ LOGIN PREMIUM DESIGN SYSTEM (#0a0a0a & Pixju Branding & Animations)
   ========================================================================== */

/* Fondo oscuro ultra elegante #0a0a0a con iluminación ambiental */
.login-background-default {
	background-color: #0a0a0a !important;
	background-image: radial-gradient(circle at 15% 15%, rgba(248, 107, 13, 0.12) 0%, transparent 45%),
	                  radial-gradient(circle at 85% 85%, rgba(248, 107, 13, 0.08) 0%, transparent 45%),
	                  radial-gradient(circle at 50% 50%, rgba(15, 15, 18, 0.9) 0%, #0a0a0a 100%) !important;
	position: relative;
	overflow: hidden;
}

/* Efectos flotantes ambientales en el fondo */
.login-background-default::before,
.login-background-default::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	z-index: 0;
	pointer-events: none;
	animation: ambientGlow 14s ease-in-out infinite alternate;
}

.login-background-default::before {
	width: 380px;
	height: 380px;
	background: rgba(248, 107, 13, 0.15);
	top: -120px;
	left: -120px;
}

.login-background-default::after {
	width: 420px;
	height: 420px;
	background: rgba(248, 107, 13, 0.1);
	bottom: -160px;
	right: -160px;
	animation-delay: -7s;
}

@keyframes ambientGlow {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 0.8;
	}
	50% {
		transform: translate(50px, 40px) scale(1.15);
		opacity: 1;
	}
	100% {
		transform: translate(-40px, 60px) scale(0.9);
		opacity: 0.7;
	}
}

/* Tarjeta del contenedor de login con glassmorphism y entrada animada */
.login-card {
	background: rgba(18, 18, 22, 0.85) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(248, 107, 13, 0.08) !important;
	border-radius: 18px !important;
	position: relative;
	z-index: 2;
	animation: loginCardEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loginCardEntrance {
	0% {
		opacity: 0;
		transform: translateY(35px) scale(0.95);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Badge del Logo de Pixju */
.login-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.login-logo-badge {
	width: 76px;
	height: 76px;
	background: radial-gradient(circle at 30% 30%, rgba(248, 107, 13, 0.28), rgba(24, 24, 28, 0.95));
	border: 1.5px solid rgba(248, 107, 13, 0.35);
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(248, 107, 13, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
	transition: all 0.4s ease;
	animation: logoPulse 3.5s ease-in-out infinite alternate;
}

.login-logo-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(248, 107, 13, 0.5));
	transition: transform 0.4s ease;
}

.login-logo-badge:hover {
	transform: translateY(-3px) scale(1.05);
	border-color: rgba(248, 107, 13, 0.6);
	box-shadow: 0 15px 40px rgba(248, 107, 13, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.login-logo-badge:hover .login-logo-img {
	transform: scale(1.1) rotate(6deg);
}

@keyframes logoPulse {
	0% {
		box-shadow: 0 10px 25px rgba(248, 107, 13, 0.2), 0 0 0 0 rgba(248, 107, 13, 0.2);
	}
	100% {
		box-shadow: 0 14px 35px rgba(248, 107, 13, 0.4), 0 0 25px 6px rgba(248, 107, 13, 0.2);
	}
}

.login-brand-title {
	font-size: 1.45rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.login-brand-accent {
	color: #f86b0d;
	background: linear-gradient(135deg, #f86b0d 0%, #ff8415 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.login-divider {
	border-color: rgba(255, 255, 255, 0.1) !important;
	opacity: 1 !important;
}

/* Campos de entrada del formulario */
.login-card .form-control {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: #f8fafc !important;
	padding: 11px 16px;
	font-size: 0.925rem;
	border-radius: 10px !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.login-card .form-control::placeholder {
	color: #64748b !important;
}

.login-card .form-control:focus {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #f86b0d !important;
	box-shadow: 0 0 0 4px rgba(248, 107, 13, 0.18) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

.login-card .input-group-text {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-left: 0 !important;
	color: #94a3b8 !important;
	border-top-right-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	transition: all 0.3s ease !important;
}

.login-card .input-group:focus-within .input-group-text {
	border-color: #f86b0d !important;
	color: #f86b0d !important;
}

.login-card label {
	color: #cbd5e1;
	font-weight: 500;
	font-size: 0.85rem;
	margin-bottom: 6px;
}

/* Botón principal animado */
.login-btn-animated {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f86b0d 0%, #d85c0b 100%) !important;
	border: none !important;
	color: #ffffff !important;
	font-weight: 600;
	padding: 12px;
	font-size: 0.95rem;
	border-radius: 10px !important;
	letter-spacing: 0.3px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 6px 20px rgba(248, 107, 13, 0.3) !important;
}

.login-btn-animated::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	transition: left 0.6s ease;
}

.login-btn-animated:hover {
	background: linear-gradient(135deg, #ff7b1f 0%, #f86b0d 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(248, 107, 13, 0.45) !important;
}

.login-btn-animated:hover::before {
	left: 100%;
}

.login-btn-animated:active {
	transform: translateY(1px);
	box-shadow: 0 3px 10px rgba(248, 107, 13, 0.25) !important;
}

/* Animaciones escalonadas para elementos dentro de la tarjeta */
.login-card .form-group,
.login-card .form-check,
.login-card .btn-submit-container,
.login-card .login-footer-text {
	animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.login-card .form-group:nth-child(1) { animation-delay: 0.12s; }
.login-card .form-group:nth-child(2) { animation-delay: 0.22s; }
.login-card .form-check { animation-delay: 0.32s; }
.login-card .btn-submit-container { animation-delay: 0.42s; }
.login-card .login-footer-text { animation-delay: 0.52s; }

@keyframes slideInUp {
	0% {
		opacity: 0;
		transform: translateY(16px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-check-input{
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:active,.form-check-input:focus,.btn{
  outline:0 !important;
  box-shadow: none !important;
}

.list-group-item {
  border:0px !important;
}

/* ==========================================================================
   ✨ GLOBAL PREMIUM UTILITIES — Extensión del Design System del Login
   ========================================================================== */

/* Botón premium reutilizable (alias de login-btn-animated para uso global) */
.btn-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f86b0d 0%, #d85c0b 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 0.925rem;
  border-radius: 10px !important;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 20px rgba(248, 107, 13, 0.3) !important;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn-premium:hover::before { left: 100%; }

.btn-premium:hover {
  background: linear-gradient(135deg, #ff7b1f 0%, #f86b0d 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(248, 107, 13, 0.45) !important;
}

.btn-premium:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(248, 107, 13, 0.25) !important;
}

/* Card glassmorphism explícita para tarjetas destacadas */
.card-glass {
  background: rgba(18, 18, 22, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(248, 107, 13, 0.08) !important;
  border-radius: 18px !important;
}

/* Label de formulario en modo oscuro (consistente con el login) */
.form-label-premium,
.login-card label {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  margin-bottom: 6px;
}

/* Animación de entrada escalonada para secciones de formulario */
.anim-enter {
  animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-enter-1 { animation-delay: 0.05s; }
.anim-enter-2 { animation-delay: 0.12s; }
.anim-enter-3 { animation-delay: 0.19s; }
.anim-enter-4 { animation-delay: 0.26s; }
.anim-enter-5 { animation-delay: 0.33s; }

/* Spinner con color naranja */
.spinner-border-primary {
  color: #f86b0d !important;
}

/* Indicador de carga de página global */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

