body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e1f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
  }
  
  .container {
    max-width: 600px;
    width: 100%;
  }
  
  .logo {
    width: 100px;
    margin: 0 auto 1rem;
    display: block;
  }
  
  h1 {
    font-size: 2.3rem;
    background: linear-gradient(90deg, #26e0f9, rgb(98, 89, 182));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }
  
  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  input[type="email"] {
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    outline: none;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
  
  button {
    padding: 0.8rem 1rem;
    border: none;
    background: rgb(98, 89, 182);
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #7b26c0;
  }
  
  .note, .contacto {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 1rem;
  }
  
  footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
  }
/* Añadido a lo anterior */
.logo {
    width: 100px;
    margin: 0 auto 1rem;
    display: block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInSlide 1s ease forwards;
    transition: transform 0.2s ease-out;
  }
  
  @keyframes fadeInSlide {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }  

  a{
    color: #edfdff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #26e0f9;
  }