* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-height: 100vh;
    background: #fff;
    overflow-x: hidden;
  }
  
  /* Hidden section */
  .registro-container {
    display: none;
    position: relative;
    z-index: 2;
    padding: 1rem 2rem;
    text-align: center;
  }
  
  .registro-container.active {
    display: block;
  }
  
  h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
  }
  
  .registro-container p {
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-inline: auto;
  }
  
  /* Button container */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;

  }
  
  /* Shared button class */
  .buttonsy {
      background: #1a3669;
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 306px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;border: 1px solid white;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
  }
  .buttonsy{
      transition: transform 0.3s ease-in-out; /* Apply transition to the base state */
  }
  .buttonsy:hover {
      transform: scale(1.1); /* Scale up by 20% on hover */
  }
  .buttonsy.inicio {
    margin-top: auto;
  }
  /* Individual styles */
  .descargar {
    background: #ff6200;
      border: solid 1px white;
  }
  
  /*.inicio {*/
  /*  background: #0e2b64;*/
  /*}*/
  
  .sesion {
    background: #10c147;
    display: flex;
    align-items: center;
    gap: 0.5rem;
      border: solid 1px white;
  }
  
  .sesion::before {
    content: '➔';
  }
  
  /* Image styling */
  .image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .image-wrapper img {
    max-width: 100%;
    height: auto;
  }
  
  /
  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    .buttons {
      flex-direction: column;
    }
  
    p {
      font-size: 0.9rem;
    }
  }
