
body {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("#APP_FILES#Fondo_login.png") center center no-repeat fixed;
  background-size: cover;
  animation: fadein 1.5s ease-in-out;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  body {
    background-position: center top;
  }
}

.t-Button--ghost {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: #1e5df0;
  border: 1px solid #1e5df0;
  border-radius: 0.75rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out;
  z-index: 0;
}

.t-Button--ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #1e5df0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.t-Button--ghost:hover {
  color: #fff;
}

.t-Button--ghost:hover::before {
  left: 0;
}

.t-Button--glass {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(30, 93, 240, 0.1);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
}

.t-Button--glass:hover {
  background: rgba(40, 167, 69, 0.15);
  color: #106422;
  animation: pulse-glow-green 1.2s infinite;
}

/* Glass estilo para todos los botones Success */
.t-Button--success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  animation: none;
}

.t-Button--success:hover {
  background: rgba(40, 167, 69, 0.15);
  color: #106422;
  animation: pulse-glow-green 1.2s infinite;
}

@keyframes pulse-glow-green {
  0% {
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
  }
  100% {
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.2);
  }
}

.t-Button--primary {
  background: rgba(30, 93, 240, 0.15);
  color: #1e5df0;
  border: 1px solid rgba(30, 93, 240, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(30, 93, 240, 0.1);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  animation: none;
}

.t-Button--primary:hover {
  background: rgba(30, 93, 240, 0.15);
  color: #123ea7;
  animation: pulse-glow-blue 1.2s infinite;
}

@keyframes pulse-glow-blue {
  0% { box-shadow: 0 0 12px rgba(30, 93, 240, 0.2); }
  50% { box-shadow: 0 0 20px rgba(30, 93, 240, 0.5); }
  100% { box-shadow: 0 0 12px rgba(30, 93, 240, 0.2); }
}

.t-Button--warning {
  background: rgba(255, 193, 7, 0.15);
  color: #e6a800;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  animation: none;
}

.t-Button--warning:hover {
  background: rgba(255, 193, 7, 0.15);
  color: #c27c00;
  animation: pulse-glow-yellow 1.2s infinite;
}

@keyframes pulse-glow-yellow {
  0% { box-shadow: 0 0 12px rgba(255, 193, 7, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
  100% { box-shadow: 0 0 12px rgba(255, 193, 7, 0.2); }
}

.t-Button--danger {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  animation: none;
}

.t-Button--danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #b52b36;
  animation: pulse-glow-red 1.2s infinite;
}

@keyframes pulse-glow-red {
  0% { box-shadow: 0 0 12px rgba(220, 53, 69, 0.2); }
  50% { box-shadow: 0 0 20px rgba(220, 53, 69, 0.5); }
  100% { box-shadow: 0 0 12px rgba(220, 53, 69, 0.2); }
}
