/* Importamos las variables root */
@import "../../css/root_main.css";

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-family-primary);
        background: linear-gradient(135deg, var(--background-primary), var(--background-secondary));
        color: var(--text-primary);
        min-height: 100vh;
        overflow-x: hidden;
    }


/* ================================================================================
   🏗️ ESTRUCTURA PRINCIPAL
   ================================================================================*/

.col_1_main_header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.main-column-login {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  align-items: center;
  margin: 0 auto;
  height: 100vh;
}



.col_3_login {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}


/* ================================================================================
   📝 CONTENEDOR PRINCIPAL EXPANDIDO
   ================================================================================*/

.container_login {
  background: var(--background-secondary);
  border-radius: 25px;
  padding: 45px 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 165, 5, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  max-width: 480px;

  animation: containerEnhancedSlideIn 0.8s ease;
}



.container_login::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 165, 5, 0.05),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
}

.container_login:hover::after {
  left: 100%;
}

.container_login:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 165, 5, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 50px rgba(239, 165, 5, 0.1);
}

@keyframes containerEnhancedSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================================================================================
   🎯 TÍTULO PRINCIPAL MEJORADO
   ================================================================================*/

.form_login h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 35px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(239, 165, 5, 0.3);
  position: relative;
  line-height: 1.2;
}

.form_login h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: titleActivationGlow 3s ease-in-out infinite alternate;
}

@keyframes titleActivationGlow {
  0% {
    width: 140px;
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(239, 165, 5, 0.3);
  }

  100% {
    width: 180px;
    opacity: 1;
    box-shadow: 0 0 25px rgba(239, 165, 5, 0.5);
  }
}

/* ================================================================================
   📋 CAJAS INFORMATIVAS
   ================================================================================*/

.info-box {
  background: var(--background-tertiary);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color-light);
  position: relative;
  transition: all 0.3s ease;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 15px 15px 0 0;
}

.info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 165, 5, 0.15);
  border-color: var(--primary-color);
}

.info-box h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li {
  padding: 8px 0 8px 25px;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.2s ease;
}

.info-box li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1.2rem;
}

.info-box li:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.info-box li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ================================================================================
   📧 CAMPO DE EMAIL MEJORADO
   ================================================================================*/

.email-input {
  position: relative;
  margin-bottom: 30px;
}

.email-input::before {
  content: "📧";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  z-index: 1;
  animation: emailInputPulse 3s ease-in-out infinite;
}

@keyframes emailInputPulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.1);
  }
}

.email-input input[type="email"] {
  width: 100%;
  padding: 22px 25px 22px 60px;
  border: 2px solid var(--border-color-input);
  border-radius: 15px;
  background: var(--background-tertiary);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  font-family: inherit;
}

.email-input input[type="email"]::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

.email-input input[type="email"]:focus {
  border-color: var(--primary-color);
  background: var(--background-input-focus);
  box-shadow: 0 0 0 4px var(--primary-color-alpha-20),
    0 12px 35px rgba(239, 165, 5, 0.2);
  transform: translateY(-2px);
}

.email-input input[type="email"]:valid {
  border-color: var(--color-success);
  background: var(--background-valid);
}

.email-input input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
  background: var(--background-invalid);
  animation: emailShake 0.4s ease;
}

@keyframes emailShake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

/* ================================================================================
   ⚠️ CAJA DE ADVERTENCIA
   ================================================================================*/

.warning-box {
  background: var(--background-warning-light);
  border: 2px solid var(--color-warning);
  border-radius: 15px;
  padding: 18px 25px;
  margin: 25px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-warning);
  position: relative;
  overflow: hidden;
  animation: warningPulse 3s ease-in-out infinite;
}

.warning-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 193, 7, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.warning-box:hover::before {
  left: 100%;
}

@keyframes warningPulse {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
  }
}

/* ================================================================================
   📋 CONTENEDOR DE PASOS
   ================================================================================*/

.steps-container {
  background: var(--background-tertiary);
  border-radius: 18px;
  padding: 30px;
  margin: 30px 0;
  border: 1px solid var(--border-color-light);
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 18px 18px 0 0;
}

.steps-container h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--background-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-line-flow);
  opacity: 0.1;
  transition: left 0.6s ease;
}

.step:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(239, 165, 5, 0.2);
}

.step:hover::before {
  left: 100%;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: var(--background-primary);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--primary-color-alpha-30);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ================================================================================
   🆘 SECCIÓN DE AYUDA MEJORADA
   ================================================================================*/

.help-section {
  background: var(--background-tertiary);
  border-radius: 18px;
  padding: 30px;
  margin: 30px 0;
  border: 1px solid var(--border-color-light);
  position: relative;
}

.help-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--color-info));
  border-radius: 18px 18px 0 0;
}

.help-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.help-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.help-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--background-link);
  border: 2px solid var(--border-color-link);
  border-radius: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.help-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-link-shine);
  transition: left 0.5s ease;
}

.help-link:hover {
  background: var(--background-link-hover);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(239, 165, 5, 0.25);
  color: var(--primary-color-hover);
}

.help-link:hover::before {
  left: 100%;
}

/* ================================================================================
   🔘 BOTÓN DE ENVÍO MEJORADO
   ================================================================================*/

.btn-futuristic.btn-small {
  width: 100%;
  padding: 22px 30px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 15px;
  color: var(--background-primary);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--primary-color-alpha-30),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  font-family: inherit;
}

.btn-futuristic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-btn-shine);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-futuristic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 2;
}

.btn-futuristic:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--primary-color-alpha-50),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 60px rgba(239, 165, 5, 0.3);
  background: var(--primary-color-hover);
}

.btn-futuristic:hover::before {
  left: 100%;
}

.btn-futuristic:hover::after {
  width: 200%;
  height: 200%;
}

.btn-futuristic:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 5px 20px var(--primary-color-alpha-30);
}

.btn-futuristic:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  background: var(--color-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contenido del botón */
.btn-futuristic * {
  position: relative;
  z-index: 3;
}


/* ================================================================================
   🚨 MENSAJES DE ESTADO MEJORADOS
   ================================================================================*/

.alert {
  border-radius: 15px;
  padding: 20px 25px;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  animation: alertEnhancedSlideDown 0.6s ease;
  position: relative;
  overflow: hidden;
}

.alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.alert:hover::before {
  left: 100%;
}

@keyframes alertEnhancedSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: var(--background-success-light);
  color: var(--color-success);
  border-color: var(--color-success);
}

.alert-warning {
  background: var(--background-warning-light);
  color: var(--color-warning);
  border-color: var(--color-warning);
}

.alert-danger {
  background: var(--background-error-light);
  color: var(--color-error);
  border-color: var(--color-error);
}

.alert-info {
  background: var(--background-info-light);
  color: var(--color-info);
  border-color: var(--color-info);
}

/* ================================================================================
   🎨 ANIMACIONES DE ENTRADA ESCALONADAS
   ================================================================================*/

.form_login > * {
  animation: enhancedElementFadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.form_login h1 {
  animation-delay: 0.1s;
}

.info-box:nth-of-type(1) {
  animation-delay: 0.2s;
}

form {
  animation-delay: 0.3s;
}

.warning-box {
  animation-delay: 0.4s;
}

.steps-container {
  animation-delay: 0.5s;
}

.info-box:nth-of-type(2) {
  animation-delay: 0.6s;
}

.help-section {
  animation-delay: 0.7s;
}

.link:nth-of-type(1) {
  animation-delay: 0.8s;
}

.link:nth-of-type(2) {
  animation-delay: 0.9s;
}

@keyframes enhancedElementFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación específica para pasos */
.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.2s;
}

.step:nth-child(3) {
  animation-delay: 0.3s;
}

.step:nth-child(4) {
  animation-delay: 0.4s;
}

.step {
  animation: stepFadeIn 0.6s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes stepFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================================================================
   📱 RESPONSIVE DESIGN MEJORADO
   ================================================================================*/

@media (max-width: 1200px) {
  .main-column-login {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .col_2_login,
  .col_4_login {
    display: none;
  }

  .col_3_login {
    height: auto;
    min-height: 100vh;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .col_1_main_header {
    padding: 15px;
  }

  .container_login {
    padding: 35px 25px;
    max-width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .form_login h1 {
    font-size: 2.1rem;
  }

  .email-input input[type="email"] {
    padding: 20px 22px 20px 55px;
    font-size: 1rem;
  }

  .email-input::before {
    left: 18px;
    font-size: 1.3rem;
  }

  .btn-futuristic {
    padding: 20px 25px;
    font-size: 1rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .help-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .help-link {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container_login {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .form_login h1 {
    font-size: 1.9rem;
  }

  .info-box,
  .warning-box,
  .steps-container,
  .help-section {
    padding: 20px 18px;
  }

  .email-input input[type="email"] {
    padding: 18px 20px 18px 50px;
    font-size: 0.95rem;
  }

  .email-input::before {
    left: 16px;
    font-size: 1.2rem;
  }

  .btn-futuristic {
    padding: 18px 22px;
    font-size: 0.95rem;
  }

  .step {
    padding: 16px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .help-link {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .info-box li,
  .help-section p {
    font-size: 0.9rem;
  }

  .link p {
    font-size: 0.9rem;
  }

  .link a {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}

@media (max-width: 360px) {
  .container_login {
    padding: 25px 15px;
  }

  .form_login h1 {
    font-size: 1.7rem;
  }

  .info-box,
  .warning-box,
  .steps-container,
  .help-section {
    padding: 18px 15px;
  }

  .email-input input[type="email"] {
    padding: 16px 18px 16px 45px;
    font-size: 0.9rem;
  }

  .email-input::before {
    left: 15px;
    font-size: 1.1rem;
  }

  .btn-futuristic {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .step {
    padding: 14px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-description {
    font-size: 0.85rem;
  }

  .help-link {
    padding: 11px 12px;
    font-size: 0.85rem;
  }

  .info-box h4,
  .steps-container h4,
  .help-section h4 {
    font-size: 1rem;
  }

  .info-box li,
  .help-section p {
    font-size: 0.85rem;
  }

  .warning-box {
    font-size: 0.9rem;
  }

  #emailTipsModal > div {
    padding: 30px 20px;
  }

  #emailTipsModal h3 {
    font-size: 1.3rem;
  }

  #emailTipsModal h4 {
    font-size: 1rem;
  }

  #emailTipsModal li {
    font-size: 0.9rem;
  }
}

/* ================================================================================
   🌙 MODO OSCURO MEJORADO
   ================================================================================*/

@media (prefers-color-scheme: dark) {
  body {
    --background-primary: #0a0a0a;
    --background-secondary: #111111;
    --background-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.6);
  }

  .container_login {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(239, 165, 5, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .container_login:hover {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(239, 165, 5, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 50px rgba(239, 165, 5, 0.15);
  }

  #emailTipsModal > div {
    background: var(--background-secondary);
    color: var(--text-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(239, 165, 5, 0.2);
  }
}

/* ================================================================================
   🖨️ PRINT STYLES
   ================================================================================*/

@media print {
  body {
    background: white !important;
    color: black !important;
  }

  .container_login {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    background: white !important;
  }

  .btn-futuristic,
  .help-links,
  #emailTipsModal {
    display: none !important;
  }

  .form_login h1 {
    color: #333 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
  }

  .info-box,
  .warning-box,
  .steps-container,
  .help-section {
    border: 1px solid #ddd !important;
    background: #f9f9f9 !important;
  }

  .step {
    border: 1px solid #ddd !important;
    background: #f5f5f5 !important;
  }

  .alert {
    border: 1px solid #ddd !important;
    background: #f9f9f9 !important;
  }
}

/* ================================================================================
   ⚡ EFECTOS ESPECIALES ADICIONALES
   ================================================================================*/

/* Efecto de ondas en el contenedor */
.container_login:hover {
  animation: activationWaves 4s ease-in-out infinite;
}

@keyframes activationWaves {
  0%,
  100% {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 165, 5, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 165, 5, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 50px rgba(239, 165, 5, 0.1);
  }
}

/* Efecto de typing mejorado */
.email-input input[type="email"]:focus::placeholder {
  animation: enhancedTypingPlaceholder 3s steps(40, end) infinite;
}

@keyframes enhancedTypingPlaceholder {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Efecto de partículas flotantes */
.form_login::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(239, 165, 5, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(103, 25, 33, 0.03) 1px,
      transparent 1px
    );
  background-size: 50px 50px, 70px 70px;
  border-radius: 25px;
  animation: particlesFloat 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes particlesFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-50px, -70px);
  }
}
