
body {
  background-color: #19202b;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 460px;
  border-radius: 14px;
  z-index: 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 10px 20px #000000, -10px -10px 20px #000000;
}

.bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 490px;
  height: 450px;
  z-index: 2;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid rgb(0, 0, 0);
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #342fb6;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

.blob2 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #828282;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 7s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}



.modern-form {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: rgba(59, 130, 246, 0.1);
    --success: #10b981;
    --text-main: #1e293b;
    --text-secondary: #64748b;
    
  
    position: relative;
    width: 426px;
    padding: 32px;
    background: #ffffff00;
    border-radius: 10px;
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .form-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 32px;
    text-align: center;
    letter-spacing: -0.01em;
  }
  
  .input-group {
    margin-bottom: 50px;
  }
  
  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .form-input {
    width: 100%;
    height: 48px;
    padding: 0 44px;
    font-size: 16px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background: var(--bg-input);
    color: #ffffff; /* Cambia el color del texto */
    transition: all 0.2s ease;
  }
  
  .input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
  }
  
  .password-toggle {
    color: rgb(74, 74, 74);
    position: absolute;
    right: 16px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    display: flex;
    align-items: center;
  }
  
  .eye-icon {
    width: 20px;
    height: 20px;
  }
  
  .password-toggle .eye-icon {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
  }
  
  .password-toggle.password-visible .eye-icon {
    fill: #343c87; /* Cambia el color del icono cuando la contraseña es visible */
  }
  
  .password-toggle:hover .eye-icon {
    fill: #717bd4; /* Cambia el color del icono al pasar el cursor */
  }
  
  .submit-button {
    width: 100%;
    height: 48px;
    margin-top: 16px;
    border-radius: 12px;
    font-size: 16px;
    background-color: #2f2f2f;
    color: #ffffff;
  }
  
  .form-footer {
    margin-top: 24px;
    font-size: 15px;
  }
  
  .password-toggle:hover {
    transform: scale(1.15);
  }

