/* Estilos por defecto para el input */
.input-newsletter {
    margin-top: 20px;
    width: 800px;
    height: 40px;
  }
  
  /* Media query para dispositivos de escritorio */
  @media only screen and (max-width: 1024px) {
    .input-newsletter {
      width: 500px;
      height: 30px;
    }
  }
  
  /* Media query para dispositivos móviles */
  @media only screen and (max-width: 480px) {
    .input-newsletter {
      width: 100%;
      height: 40px;
    }
  }

.btn-newsletter {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}